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:
parent
7147557e2b
commit
de0a76818e
2 changed files with 11 additions and 3 deletions
|
|
@ -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]),
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue