Reset modulo precedence.

This commit is contained in:
Stephen Chung
2020-10-13 15:49:09 +08:00
parent 28697e0380
commit 037e8334d4
2 changed files with 4 additions and 4 deletions

View File

@@ -623,9 +623,9 @@ impl Token {
Plus | Minus => 150,
Divide | Multiply => 180,
Divide | Multiply | Modulo => 180,
PowerOf | Modulo => 190,
PowerOf => 190,
LeftShift | RightShift => 210,