(msg string, tok *token)
| 977 | } |
| 978 | |
| 979 | func (p *parser) parsingFailure(msg string, tok *token) (ast.Node, errors.StaticError) { |
| 980 | return nil, errors.MakeStaticError(msg, tok.loc) |
| 981 | } |
| 982 | |
| 983 | func (p *parser) parse(prec iast.Precedence) (ast.Node, errors.StaticError) { |
| 984 | begin := p.peek() |
no test coverage detected