feat(lexer): add more options
This commit is contained in:
parent
dc3cfc5fbe
commit
dcc52e2850
3 changed files with 44 additions and 13 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue