Still broken, but all desugaring functions stubbed out.

This commit is contained in:
Meredith L. Patterson 2013-02-03 02:18:19 -05:00
parent 156be7a559
commit 5ae267f3ed
14 changed files with 147 additions and 26 deletions

View file

@ -40,10 +40,15 @@ static bool diff_isValidCF(void *env) {
tp->p2->vtable->isValidCF(tp->p2->env));
}
static HCFChoice* desugar_difference(HAllocator *mm__, void *env) {
}
static HParserVtable difference_vt = {
.parse = parse_difference,
.isValidRegular = h_false,
.isValidCF = diff_isValidCF,
.desugar = desugar_difference,
};
const HParser* h_difference(const HParser* p1, const HParser* p2) {