()
| 139 | } |
| 140 | |
| 141 | func (parser *Parser) skipIfCurrentTokenIsApostrophe() bool { |
| 142 | if parser.currentToken.Type == token.APOSTROPHE { |
| 143 | parser.nextToken() |
| 144 | return true |
| 145 | } |
| 146 | return false |
| 147 | } |
| 148 | |
| 149 | func (parser *Parser) skipIfCurrentTokenIsSemicolon() { |
| 150 | if parser.currentToken.Type == token.SEMICOLON { |
no test coverage detected