feat(lexer): Scan empty string
This commit is contained in:
parent
4054ed5fce
commit
f72501fde2
5 changed files with 45 additions and 0 deletions
5
src/lexer/TokenType.kt
Normal file
5
src/lexer/TokenType.kt
Normal file
|
@ -0,0 +1,5 @@
|
|||
package lexer
|
||||
|
||||
enum class TokenType {
|
||||
EOF
|
||||
}
|
Reference in a new issue