(kind ast.Kind)
| 996 | } |
| 997 | |
| 998 | func (p *Parser) parseExpected(kind ast.Kind) bool { |
| 999 | return p.parseExpectedWithDiagnostic(kind, nil, true) |
| 1000 | } |
| 1001 | |
| 1002 | func (p *Parser) parseExpectedWithoutAdvancing(kind ast.Kind) bool { |
| 1003 | return p.parseExpectedWithDiagnostic(kind, nil, false) |
no test coverage detected