aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h
index 6e43605..9727d6a 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -17,6 +17,7 @@ enum class TokenType : int8_t {
PARENTHESES_OPEN = 90,
PARENTHESES_CLOSE = 91,
VALUE_NUMBER = -1,
+ VALUE_IDENTIFIER = -2,
};
TokenType getTokenType(char);