()
| 6061 | } |
| 6062 | |
| 6063 | func (p *Parser) isLiteralPropertyName() bool { |
| 6064 | return tokenIsIdentifierOrKeyword(p.token) || p.token == ast.KindStringLiteral || p.token == ast.KindNumericLiteral || p.token == ast.KindBigIntLiteral |
| 6065 | } |
| 6066 | |
| 6067 | func (p *Parser) isStartOfStatement() bool { |
| 6068 | switch p.token { |
no test coverage detected