aboutsummaryrefslogtreecommitdiff
path: root/include/binop_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/binop_type.h')
-rw-r--r--include/binop_type.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/binop_type.h b/include/binop_type.h
index 94d2b7a..9264cf7 100644
--- a/include/binop_type.h
+++ b/include/binop_type.h
@@ -8,7 +8,12 @@ typedef enum {
BINOP_DIV,
BINOP_DOT,
BINOP_EQUALS,
- BINOP_AND
+ BINOP_NOT_EQUAL,
+ BINOP_AND,
+ BINOP_LESS,
+ BINOP_LESS_EQUAL,
+ BINOP_GREATER,
+ BINOP_GREATER_EQUAL
} BinopType;
#endif