(path []string)
| 674 | } |
| 675 | |
| 676 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 677 | decoded, err := j.shallowDecode() |
| 678 | if err != nil { |
| 679 | return nil, false, err |
| 680 | } |
| 681 | return decoded.doRemovePath(path) |
| 682 | } |
| 683 | |
| 684 | // Size implements the JSON interface. |
| 685 | func (j *jsonEncoded) Size() uintptr { |
nothing calls this directly
no test coverage detected