0
0

🐛 remove lexeme from EOF token

This commit is contained in:
DrMaxNix 2022-09-09 13:35:56 +02:00
parent 46461c9de0
commit b730713c0c

View File

@ -46,7 +46,8 @@ class Juicescript_lexer {
// ADD END-OF-FILE TOKEN // // ADD END-OF-FILE TOKEN //
this.token_add({ this.token_add({
type: Juicescript.token_type.EOF, type: Juicescript.token_type.EOF,
line: this.line line: this.line,
lexeme: ""
}); });