Raise precedence of "is". Fix #119.

This commit is contained in:
Bob Nystrom
2015-01-18 10:20:13 -08:00
parent ae97e9c3a4
commit d8b678356e
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1311,8 +1311,8 @@ typedef enum
PREC_LOWEST,
PREC_ASSIGNMENT, // =
PREC_LOGIC, // && ||
PREC_IS, // is
PREC_EQUALITY, // == !=
PREC_IS, // is
PREC_COMPARISON, // < > <= >=
PREC_RANGE, // .. ...
PREC_BITWISE, // | &