ridencww / goldengine

Java implementation of Devin Cook's GOLD Parser engine
Other
35 stars 14 forks source link

Bugfix proposal for #28 #29

Open codemanyak opened 6 months ago

codemanyak commented 6 months ago

Parsing used to fail with error.group_runaway if the parsed file ends with a line comment group since the newlines before the EOF are suppressed by lookahadDFA(). Therefor, this hack tolerates a single group with endingMode OPEN on the group stack when an EOF token is ahead.