remove useless desugar_unimplemented; revert incorrect changes to test_llk()

This commit is contained in:
Meredith L. Patterson 2013-05-24 20:10:21 -07:00
parent 02d68f6d18
commit 8618f9cb62
2 changed files with 10 additions and 15 deletions

View file

@ -12,16 +12,11 @@ static HParseResult* parse_unimplemented(void* env, HParseState *state) {
return &result;
}
static HCFChoice* desugar_unimplemented(HAllocator *mm__, HCFStack *stk__, void *env) {
assert_message(0, "'h_unimplemented' is not context-free, can't be desugared");
return NULL;
}
static const HParserVtable unimplemented_vt = {
.parse = parse_unimplemented,
.isValidRegular = h_false,
.isValidCF = h_false,
.desugar = desugar_unimplemented,
.desugar = NULL,
.compile_to_rvm = h_not_regular,
};