diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-13 11:45:49 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-13 11:45:49 +0530 |
commit | e119cb100dadf8b3e3b6660029abf73d14cf209b (patch) | |
tree | 366b289a742fa6a8e043feac6217fa0ae1f5217b /include/lexer.h | |
parent | 35931d1021ac886e85015fc6e1640350cba578a1 (diff) |
lexer: handle identifiers
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h index 8122848..4605142 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -27,6 +27,7 @@ private: private: void string(void); void number(void); + void identifier(void); private: void add_token(token_type_e type); |