mirror of
https://github.com/Ed94/metadesk.git
synced 2026-08-02 04:38:14 +00:00
[expr parser] a few misc bits of tidying - poking around for next steps - notes on issues
This commit is contained in:
@@ -72,9 +72,11 @@ X(AssignLeftShift, "<<=", BinaryRightAssociative, 4) \
|
||||
X(AssignRightShift, ">>=", BinaryRightAssociative, 4) \
|
||||
X(AssignBitwiseAnd, "&=", BinaryRightAssociative, 4) \
|
||||
X(AssignBitwiseXor, "^=", BinaryRightAssociative, 4) \
|
||||
X(AssignBitwiseOr, "|=", BinaryRightAssociative, 4) \
|
||||
X(BracketSet, "[]", Prefix, 3) \
|
||||
X(BraceSet, "{}", Prefix, 3)
|
||||
X(AssignBitwiseOr, "|=", BinaryRightAssociative, 4)
|
||||
|
||||
// TODO(allen): I don't think we want to do this
|
||||
// X(BracketSet, "[]", Prefix, 3)
|
||||
// X(BraceSet, "{}", Prefix, 3)
|
||||
// X(Cast "()", Prefix, 17)
|
||||
// X(Comma, ",", Binary, 3)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user