From d3a743442b7694a39039c947dfea40694853bffa Mon Sep 17 00:00:00 2001 From: greg Date: Tue, 27 Dec 2016 01:39:22 -0800 Subject: [PATCH] = should have high precedence --- src/parser.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser.rs b/src/parser.rs index a8a6876..5fd93d4 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -114,6 +114,7 @@ impl Parser { "*" => 20, "/" => 20, "%" => 20, + "=" => 1, _ => 255, } }