(any ast.Any)
| 69 | } |
| 70 | |
| 71 | func anyAsValue(any ast.Any) *ast.ImpliedValue { |
| 72 | return &ast.ImpliedValue{ |
| 73 | Kind: "ImpliedValue", |
| 74 | Of: any, |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | func (p *Parser) decorate(any ast.Any, err error) (ast.Value, error) { |
| 79 | if err != nil { |
no outgoing calls
no test coverage detected