diff options
Diffstat (limited to 'include/lexer.h')
| -rw-r--r-- | include/lexer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/lexer.h b/include/lexer.h index 9377807..c56244f 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -4,9 +4,10 @@ ////////////////////////////////////// enum e_token_tag { - LTAG_STR, - LTAG_STR_SINGLE, - LTAG_STR_DOUBLE, + LTAG_STR = 1 << 0, + LTAG_STR_SINGLE = 1 << 1, + LTAG_STR_DOUBLE = 1 << 2, + LTAG_STICK = 1 << 3, }; typedef struct |
