feat(lexer): match regular words
This commit is contained in:
parent
dcc52e2850
commit
ec076a56a5
6 changed files with 82 additions and 5 deletions
|
|
@ -32,6 +32,8 @@ typedef enum mrk_token_type {
|
|||
mrk_token_type_left_paren,
|
||||
mrk_token_type_right_paren,
|
||||
mrk_token_type_backslash,
|
||||
mrk_token_type_dotted_number,
|
||||
mrk_token_type_word,
|
||||
} mrk_token_type;
|
||||
|
||||
typedef struct mrk_token {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue