faster: Correct precedence but don't use it

Precedence now works for, like, resolving expressions in a single
big table but uh... it takes the time from 700ms to like 7s so I've
reverted it for now.
This commit is contained in:
John Doty 2024-04-17 17:13:18 -07:00
parent 7147557e2b
commit de0a76818e
2 changed files with 11 additions and 3 deletions

View file

@ -143,6 +143,7 @@ precedence = [
(Assoc.LEFT, [LESS, GREATER, GREATEREQUAL, LESSEQUAL]),
(Assoc.LEFT, [PLUS, MINUS]),
(Assoc.LEFT, [STAR, SLASH]),
(Assoc.LEFT, ["PrimaryExpression"]),
(Assoc.LEFT, [LPAREN]),
(Assoc.LEFT, [DOT]),