()
| 1348 | } |
| 1349 | |
| 1350 | func (p *Parser) parseContinueStatement() *ast.Node { |
| 1351 | pos := p.nodePos() |
| 1352 | jsdoc := p.jsdocScannerInfo() |
| 1353 | p.parseExpected(ast.KindContinueKeyword) |
| 1354 | label := p.parseIdentifierUnlessAtSemicolon() |
| 1355 | p.parseSemicolon() |
| 1356 | result := p.finishNode(p.factory.NewContinueStatement(label), pos) |
| 1357 | p.withJSDoc(result, jsdoc) |
| 1358 | return result |
| 1359 | } |
| 1360 | |
| 1361 | func (p *Parser) parseIdentifierUnlessAtSemicolon() *ast.Node { |
| 1362 | if !p.canParseSemicolon() { |
no test coverage detected