(path []string)
| 716 | } |
| 717 | |
| 718 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 719 | decoded, err := j.shallowDecode() |
| 720 | if err != nil { |
| 721 | return nil, false, err |
| 722 | } |
| 723 | return decoded.doRemovePath(path) |
| 724 | } |
| 725 | |
| 726 | // Size implements the JSON interface. |
| 727 | func (j *jsonEncoded) Size() uintptr { |
nothing calls this directly
no test coverage detected