(path []string)
| 688 | } |
| 689 | |
| 690 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 691 | decoded, err := j.shallowDecode() |
| 692 | if err != nil { |
| 693 | return nil, false, err |
| 694 | } |
| 695 | return decoded.doRemovePath(path) |
| 696 | } |
| 697 | |
| 698 | // Size implements the JSON interface. |
| 699 | func (j *jsonEncoded) Size() uintptr { |
nothing calls this directly
no test coverage detected