bin compare precidence thnks mzfhhhh

This commit is contained in:
Adam D. Ruppe 2019-03-26 20:28:19 -04:00
parent 60dda09f96
commit 68e67279f2
1 changed files with 5 additions and 3 deletions

View File

@ -2093,12 +2093,14 @@ Expression parseAddend(MyTokenStreamHere)(ref MyTokenStreamHere tokens) {
case "=":
tokens.popFront();
return new AssignExpression(e1, parseExpression(tokens));
case "&&": // thanks to mzfhhhh for fix
case "||":
tokens.popFront();
e1 = new BinaryExpression(peek.str, e1, parseExpression(tokens));
break;
case "~":
// FIXME: make sure this has the right associativity
case "&&": // FIXME: precedence?
case "||":
case "&":
case "|":
case "^":