fix: raise precedence of is above equality operators in parser

The `is` operator was placed at `PREC_IS` which had lower precedence than `PREC_EQUALITY`, causing expressions like `true == 10 is Num` to parse incorrectly. Moved `PREC_IS` above `PREC_EQUALITY` in the precedence enum to give `is` higher binding power than `==` and `!=`. Added precedence tests in new `test/precedence.wren` file and removed TODO comments about precedence from `test/is/is.wren`.
This commit is contained in:
Bob Nystrom
2015-01-18 18:20:13 +00:00
parent 48c3f540df
commit 850d6d1b5d
3 changed files with 5 additions and 4 deletions
-3
View File
@@ -28,9 +28,6 @@ IO.print(new Fn { 1 } is Class) // expect: false
IO.print("s" is Class) // expect: false
IO.print(123 is Class) // expect: false
// TODO: Non-class on RHS.
// TODO: Precedence and associativity.
// Ignore newline after "is".
IO.print(123 is
Num) // expect: true