(ctx context.Context, r interface{}, visit pathMatcher)
| 41 | } |
| 42 | |
| 43 | func (p plainPath) visitMatchs(ctx context.Context, r interface{}, visit pathMatcher) { |
| 44 | res, err := p.evaluatePath(ctx, r, r) |
| 45 | if err == nil { |
| 46 | visit(nil, res) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func (p plainPath) withPlainSelector(selector plainSelector) path { |
| 51 | return append(p, selector) |
nothing calls this directly
no test coverage detected