[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

@ -24,7 +24,6 @@ from parser import (
class FineGrammar(Grammar):
# generator = parser.GenerateLR1
# generator = parser.GeneratePager
# generator = parser.GenerateLALR
start = "File"
trivia = ["BLANKS", "LINE_BREAK", "COMMENT"]