@@ -31,9 +31,8 @@ Lower precedence numbers are more tightly-binding.
3131| | subscript | ` tList[1] ` , ` tArray["key"] ` |
3232| 3 | property | ` the paint of this canvas ` |
3333| | subscript chunk | ` char 2 of tString ` |
34- | | function chunk | ` the length of tList ` |
35- | | constructor | ` rectangle tList ` |
3634| 4 | conversion | ` tString parsed as number ` |
35+ | | function chunk | ` the offset of "o" in "foo" ` |
3736| 5 | modifier | ` -tNum ` , ` bitwise not ` |
3837| 6 | exponentiation | ` ^ ` |
3938| 7 | multiplication | ` / ` ,` * ` ,` mod ` , ` div ` |
@@ -43,9 +42,10 @@ Lower precedence numbers are more tightly-binding.
4342| 10 | bitwise and | ` 7 bitwise and 1 ` |
4443| 11 | bitwise xor | ` 7 bitwise xor 5 ` |
4544| 12 | bitwise or | ` 2 bitwise or 4 ` |
46- | 13 | comparison | ` <= ` , ` < ` , ` is ` |
45+ | 13 | constructor | ` rectangle tList ` |
46+ | 14 | comparison | ` <= ` , ` < ` , ` is ` |
4747| | classification | ` is a ` |
48- | 14 | logical not | ` not tBoolean ` |
49- | 15 | logical and | ` Foo() and Bar() ` |
50- | 16 | logical or | ` Foo() or Bar() ` |
51- | 17 | sequence | ` , ` |
48+ | 15 | logical not | ` not tBoolean ` |
49+ | 16 | logical and | ` Foo() and Bar() ` |
50+ | 17 | logical or | ` Foo() or Bar() ` |
51+ | 18 | sequence | ` , ` |
0 commit comments