cl-parser: Index is NOT a low precedence operator!!!

This commit is contained in:
John 2024-07-27 17:37:29 -05:00
parent 7d98ef87d5
commit 883c2677d9

View File

@ -1218,13 +1218,13 @@ pub enum Precedence {
Assign,
Compare,
Range,
Index,
Logic,
Bitwise,
Shift,
Factor,
Term,
Unary,
Index,
Cast,
Member, // left-associative
Call,