feat: Atom parsing
This commit is contained in:
parent
bd5c825ca2
commit
e749f8c6cb
8 changed files with 212 additions and 11 deletions
|
@ -2,11 +2,10 @@ package lexer
|
|||
|
||||
enum class TokenType {
|
||||
ALPHANUMERIC,
|
||||
// TODO Replace with SMALL_LETTER, CAPITAL_LETTER, DIGIT, HEX_DIGIT, ... ?
|
||||
|
||||
LEFT_PARENTHESES, RIGHT_PARENTHESES,
|
||||
LEFT_PARENTHESIS, RIGHT_PARENTHESIS,
|
||||
DOT,
|
||||
|
||||
// Operators
|
||||
|
||||
EOF
|
||||
}
|
||||
|
|
Reference in a new issue