feat(lexer): match regular words

This commit is contained in:
Jef Roosens 2024-03-07 11:02:28 +01:00
parent dcc52e2850
commit ec076a56a5
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 82 additions and 5 deletions

View file

@ -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 {