[parser] Remove bad LALR implementation, start cleanup

This commit is contained in:
John Doty 2024-10-10 07:58:16 -07:00
parent da7ca95a86
commit 2656a1d328
4 changed files with 36 additions and 135 deletions

View file

@ -89,7 +89,6 @@ def test_all_generators():
parser.GenerateLR0,
parser.GeneratePager,
parser.GenerateLR1,
parser.GenerateLALR,
]
for generator in GENERATORS:
table = G().build_table(generator=generator)
@ -234,7 +233,6 @@ def test_grammar_aho_ullman_2():
TestGrammar().build_table()
TestGrammar().build_table(generator=parser.GenerateLR1)
TestGrammar().build_table(generator=parser.GenerateLALR)
TestGrammar().build_table(generator=parser.GeneratePager)