(ctx context.Context, root interface{})
| 14 | type ambiguousMatcher func(key, v interface{}) |
| 15 | |
| 16 | func (p plainPath) evaluate(ctx context.Context, root interface{}) (interface{}, error) { |
| 17 | return p.evaluatePath(ctx, root, root) |
| 18 | } |
| 19 | |
| 20 | func (p plainPath) evaluatePath(ctx context.Context, root, value interface{}) (interface{}, error) { |
| 21 | var err error |
nothing calls this directly
no test coverage detected