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, Assign,
Compare, Compare,
Range, Range,
Index,
Logic, Logic,
Bitwise, Bitwise,
Shift, Shift,
Factor, Factor,
Term, Term,
Unary, Unary,
Index,
Cast, Cast,
Member, // left-associative Member, // left-associative
Call, Call,