aboutsummaryrefslogtreecommitdiffstats
path: root/src/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lexer.h')
-rwxr-xr-xsrc/lexer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lexer.h b/src/lexer.h
index 43898bd..4fa4db5 100755
--- a/src/lexer.h
+++ b/src/lexer.h
@@ -18,6 +18,9 @@ typedef enum TokenType {
18 TOKEN_TRUE, 18 TOKEN_TRUE,
19 TOKEN_FALSE, 19 TOKEN_FALSE,
20 20
21 // Keywords.
22 TOKEN_LAMBDA,
23
21 // End of file. 24 // End of file.
22 TOKEN_EOF, 25 TOKEN_EOF,
23} TokenType; 26} TokenType;