aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index e30ec8e..363478c 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -97,10 +97,18 @@ enum {
‘lhs & rhs’ */
ASTBINIOR = '|',
+ /* Binary not equals
+ ‘lhs != rhs’ */
+ ASTBINNEQ = UINT8_MAX - 3,
+
/* Binary left shift
‘lhs << rhs’ */
ASTBINSHL = UINT8_MAX - 2,
+ /* Binary equals
+ ‘lhs == rhs’ */
+ ASTBINEQ = UINT8_MAX - 1,
+
/* Binary right shift
‘lhs >> rhs’ */
ASTBINSHR = UINT8_MAX - 0,