aboutsummaryrefslogtreecommitdiffstats
path: root/src/lexer.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-30 08:36:14 +0200
committerBad Diode <bd@badd10de.dev>2021-10-30 08:36:14 +0200
commitf17b11003fe384b49a7bf844824f23167b6095e0 (patch)
tree7129ee8267bf8327d608c1d3a927295929b24631 /src/lexer.h
parent4ebcd99d1fadac72ea58ea46012a86c5319ef7e7 (diff)
downloadbdl-f17b11003fe384b49a7bf844824f23167b6095e0.tar.gz
bdl-f17b11003fe384b49a7bf844824f23167b6095e0.zip
Add parsing of if expressions
Diffstat (limited to 'src/lexer.h')
-rwxr-xr-xsrc/lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lexer.h b/src/lexer.h
index 4fa4db5..4798a2b 100755
--- a/src/lexer.h
+++ b/src/lexer.h
@@ -20,6 +20,7 @@ typedef enum TokenType {
20 20
21 // Keywords. 21 // Keywords.
22 TOKEN_LAMBDA, 22 TOKEN_LAMBDA,
23 TOKEN_IF,
23 24
24 // End of file. 25 // End of file.
25 TOKEN_EOF, 26 TOKEN_EOF,