summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/types.h b/types.h
index 5222f85..d6143da 100644
--- a/types.h
+++ b/types.h
@@ -164,7 +164,11 @@ typedef enum {
KW_RBRACE,
KW_LSQUARE,
KW_RSQUARE,
- KW_EQEQ,
+ KW_EQ_EQ,
+ KW_PLUS_EQ,
+ KW_MINUS_EQ,
+ KW_ASTERISK_EQ,
+ KW_SLASH_EQ,
KW_NE,
KW_LE,
KW_LT,
@@ -381,6 +385,10 @@ typedef enum {
BINARY_SUB,
BINARY_MUL,
BINARY_DIV,
+ BINARY_SET_ADD, /* e.g. x += y */
+ BINARY_SET_SUB,
+ BINARY_SET_MUL,
+ BINARY_SET_DIV,
BINARY_GT,
BINARY_LT,
BINARY_GE,