(pos Pos)
| 1329 | } |
| 1330 | |
| 1331 | func (p *Parser) tryParseEngineExpr(pos Pos) (*EngineExpr, error) { |
| 1332 | if !p.matchKeyword(KeywordEngine) { |
| 1333 | return nil, nil // nolint |
| 1334 | } |
| 1335 | return p.parseEngineExpr(pos) |
| 1336 | } |
| 1337 | |
| 1338 | func (p *Parser) parseEngineExpr(pos Pos) (*EngineExpr, error) { |
| 1339 | if err := p.expectKeyword(KeywordEngine); err != nil { |
no test coverage detected