Allow all parse stack heads to finish

This commit is contained in:
Max Brunsfeld 2015-12-08 13:01:33 -08:00
parent a7ca28403e
commit 26e34ddcbb
2 changed files with 23 additions and 30 deletions

View file

@ -14,6 +14,7 @@ typedef struct {
const TSLanguage *language;
Vector lookahead_states;
Vector reduce_parents;
int finished_stack_head;
} TSParser;
TSParser ts_parser_make();