selectors support for hash
This commit is contained in:
@@ -107,6 +107,8 @@ func (l *Lexer) NextToken() token.Token {
|
||||
tok = newToken(token.SEMICOLON, l.ch)
|
||||
case ',':
|
||||
tok = newToken(token.COMMA, l.ch)
|
||||
case '.':
|
||||
tok = newToken(token.DOT, l.ch)
|
||||
case '(':
|
||||
tok = newToken(token.LPAREN, l.ch)
|
||||
case ')':
|
||||
|
||||
Reference in New Issue
Block a user