Fix grammar bugs, work on debugging harness.

This commit is contained in:
John Doty 2024-05-27 19:02:10 -07:00
parent 797ec8cd76
commit 0fc04cf11e
3 changed files with 312 additions and 13 deletions

View file

@ -1723,7 +1723,7 @@ class Grammar:
return grammar
def build_table(self, start: str, generator=GenerateLALR):
def build_table(self, start: str, generator=GenerateLR1):
"""Construct a parse table for this grammar, starting at the named
nonterminal rule.
"""