summaryrefslogtreecommitdiff
path: root/include/lexer/keywords.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lexer/keywords.h')
-rw-r--r--include/lexer/keywords.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/lexer/keywords.h b/include/lexer/keywords.h
index 4919f73..23c5630 100644
--- a/include/lexer/keywords.h
+++ b/include/lexer/keywords.h
@@ -36,7 +36,9 @@
struct keyword {
struct hashmap_entry hashmap_entry;
size_t len;
- enum token_kind value;
+
+ enum token_kind tok_kind;
+ uint8_t tok_flags;
};
struct keyword *keywords_find(struct token *tok);