(ctx context.Context, gParser *gval.Parser)
| 20 | } |
| 21 | |
| 22 | func parseCurrentPath(ctx context.Context, gParser *gval.Parser) (r gval.Evaluable, err error) { |
| 23 | p := newParser(gParser) |
| 24 | p.appendPlainSelector(currentElementSelector()) |
| 25 | return p.parse(ctx) |
| 26 | } |
| 27 | |
| 28 | func newParser(p *gval.Parser) *parser { |
| 29 | return &parser{Parser: p, path: plainPath{}} |
nothing calls this directly
no test coverage detected
searching dependent graphs…