add iterative API to LALR backend

This commit is contained in:
Sven M. Hallberg 2015-09-16 23:43:30 +02:00
parent ff55937e00
commit caf00006f3
4 changed files with 67 additions and 5 deletions

View file

@ -346,7 +346,10 @@ void h_lalr_free(HParser *parser)
HParserBackendVTable h__lalr_backend_vtable = {
.compile = h_lalr_compile,
.parse = h_lr_parse,
.free = h_lalr_free
.free = h_lalr_free,
.parse_start = h_lr_parse_start,
.parse_chunk = h_lr_parse_chunk,
.parse_finish = h_lr_parse_finish
};