feat(lexer): add more options

This commit is contained in:
Jef Roosens 2024-03-05 10:07:57 +01:00
parent dc3cfc5fbe
commit dcc52e2850
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
3 changed files with 44 additions and 13 deletions

View file

@ -21,10 +21,17 @@ typedef enum mrk_token_type {
mrk_token_type_stars,
mrk_token_type_equals,
mrk_token_type_blank_line,
mrk_token_type_space,
mrk_token_type_newline,
mrk_token_type_spaces,
mrk_token_type_line_break,
mrk_token_type_right_angle_bracket,
mrk_token_type_tab,
mrk_token_type_right_angle_brackets,
mrk_token_type_tabs,
mrk_token_type_left_bracket,
mrk_token_type_right_bracket,
mrk_token_type_bang,
mrk_token_type_left_paren,
mrk_token_type_right_paren,
mrk_token_type_backslash,
} mrk_token_type;
typedef struct mrk_token {