Implements basic numerical tables
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -69,6 +69,10 @@ IToken* Lexer::LexNext(char c){
|
||||
return new SimpleToken(TokenKind::OpenSquareBracket, this -> _position - 1, 1);
|
||||
case ']':
|
||||
return new SimpleToken(TokenKind::CloseSquareBracket, this -> _position - 1, 1);
|
||||
case '{':
|
||||
return new SimpleToken(TokenKind::OpenCurlyBracket, this -> _position - 1, 1);
|
||||
case '}':
|
||||
return new SimpleToken(TokenKind::CloseCurlyBracket, this -> _position - 1, 1);
|
||||
case ',':
|
||||
return new SimpleToken(TokenKind::CommaToken, this -> _position - 1, 1);
|
||||
case '.':
|
||||
|
||||
Reference in New Issue
Block a user