[parser] Remove bad LALR implementation, start cleanup
This commit is contained in:
parent
da7ca95a86
commit
2656a1d328
4 changed files with 36 additions and 135 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue