mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Remove space and atWord tokens
`atWord` wasn't used at all and spaces should be eaten by the lexer And added `unspecified` token
This commit is contained in:
@ -62,7 +62,7 @@ private:
|
||||
void advance();
|
||||
|
||||
QueryLexer lexer = QueryLexer("");
|
||||
Token currentToken = Token(Token::Type::eof);
|
||||
Token currentToken = Token(Token::Type::undefined);
|
||||
|
||||
template<typename T>
|
||||
static bool isIn(const T &e, const std::list<T> &v)
|
||||
|
Reference in New Issue
Block a user