summaryrefslogtreecommitdiff
path: root/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'lexer.h')
-rw-r--r--lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lexer.h b/lexer.h
index 542dd2c..2e27ffa 100644
--- a/lexer.h
+++ b/lexer.h
@@ -25,6 +25,7 @@ struct token {
enum TOKEN_TYPE type;
struct location loc;
char value[MAX_IDENT_LENGTH];
+ size_t span;
struct token *next;
};