Adding desugar

This commit is contained in:
Rob Zinkov 2013-03-17 13:25:02 -07:00
parent f7246e9589
commit 4e11c90664
10 changed files with 15 additions and 13 deletions

View file

@ -1,4 +1,6 @@
#include "hammer.h"
#include "internal.h"
HCFChoice *h_desugar(HAllocator *mm__, HParser *parser) {
return parser->vtable->desugar(mm__, parser);
HCFChoice *h_desugar(HAllocator *mm__, const HParser *parser) {
return parser->vtable->desugar(mm__, parser->env);
}