()
| 6333 | } |
| 6334 | |
| 6335 | func (p *Parser) nextIsStartOfExpression() bool { |
| 6336 | p.nextToken() |
| 6337 | return p.isStartOfExpression() |
| 6338 | } |
| 6339 | |
| 6340 | func (p *Parser) isUsingDeclaration() bool { |
| 6341 | // 'using' always starts a lexical declaration if followed by an identifier. We also eagerly parse |
nothing calls this directly
no test coverage detected