feat(lexer): Parentheses and quoted strings
This commit is contained in:
parent
e1f632ca40
commit
dc9e43e9ba
4 changed files with 155 additions and 23 deletions
|
@ -3,7 +3,10 @@ package lexer
|
|||
enum class TokenType {
|
||||
ALPHANUMERIC,
|
||||
|
||||
LEFT_PARENTHESES, RIGHT_PARENTHESES,
|
||||
DOT,
|
||||
|
||||
// Operators
|
||||
|
||||
EOF
|
||||
}
|
||||
|
|
Reference in a new issue