aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/lexer.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-23 18:19:14 +0200
committerBad Diode <bd@badd10de.dev>2021-10-23 18:19:14 +0200
commitb07ece568d8d62ca80a8ba3b43fb46a98e117d5a (patch)
tree1b52b7c3c4d73d154ca565e57cf5e062d4495a2a /src/bytecode/lexer.h
parentc3fe9367986520b08a36bf693e6c74eb309377c5 (diff)
downloadbdl-b07ece568d8d62ca80a8ba3b43fb46a98e117d5a.tar.gz
bdl-b07ece568d8d62ca80a8ba3b43fb46a98e117d5a.zip
Add logic operations
Diffstat (limited to 'src/bytecode/lexer.h')
-rwxr-xr-xsrc/bytecode/lexer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bytecode/lexer.h b/src/bytecode/lexer.h
index 47fd384..cee2915 100755
--- a/src/bytecode/lexer.h
+++ b/src/bytecode/lexer.h
@@ -38,10 +38,10 @@ typedef enum TokenType {
38 TOKEN_AND, 38 TOKEN_AND,
39 TOKEN_OR, 39 TOKEN_OR,
40 TOKEN_EQUAL, 40 TOKEN_EQUAL,
41 TOKEN_LESS_THAN, 41 TOKEN_LESS,
42 TOKEN_GREATER_THAN, 42 TOKEN_GREATER,
43 TOKEN_LESS_EQUAL_THAN, 43 TOKEN_LESS_EQUAL,
44 TOKEN_GREATER_EQUAL_THAN, 44 TOKEN_GREATER_EQUAL,
45 45
46 TOKEN_EOF, 46 TOKEN_EOF,
47} TokenType; 47} TokenType;