summaryrefslogtreecommitdiff
path: root/include/lex.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lex.h')
-rw-r--r--include/lex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lex.h b/include/lex.h
index bdfd32f..ab09baf 100644
--- a/include/lex.h
+++ b/include/lex.h
@@ -30,6 +30,7 @@
#define TOKEN_MINUS 22
#define TOKEN_STAR 23
#define TOKEN_SLASH 24
+#define TOKEN_BANG 25
const char* lex_get_token_name(int id);
@@ -40,8 +41,7 @@ const char* lex_get_token_name(int id);
struct token {
int type;
-// size_t line;
-// size_t linepos;
+ size_t line;
size_t length;
char *lexeme;
};