diff --git a/SLS_C/include/sls/lexer.h b/SLS_C/include/sls/lexer.h index ee0bb2a..156d442 100644 --- a/SLS_C/include/sls/lexer.h +++ b/SLS_C/include/sls/lexer.h @@ -34,6 +34,7 @@ typedef enum { typedef struct { const char *name; + size_t length; uint8_t is_literal; } Identifier; @@ -42,4 +43,9 @@ typedef struct { IntegerBuiltInType type; } IntegerLiteral; +typedef struct { + const char *value; + size_t length; +} String; + #endif // SLS_LEXER_H