= should have high precedence

This commit is contained in:
greg 2016-12-27 01:39:22 -08:00
parent e46d840d96
commit d3a743442b
1 changed files with 1 additions and 0 deletions

View File

@ -114,6 +114,7 @@ impl Parser {
"*" => 20,
"/" => 20,
"%" => 20,
"=" => 1,
_ => 255,
}
}