(depth int)
| 798 | } |
| 799 | |
| 800 | func (j *jsonEncoded) allPathsWithDepth(depth int) ([]JSON, error) { |
| 801 | decoded, err := j.decode() |
| 802 | if err != nil { |
| 803 | return nil, err |
| 804 | } |
| 805 | return decoded.allPathsWithDepth(depth) |
| 806 | } |
| 807 | |
| 808 | // HasContainerLeaf implements the JSON interface. |
| 809 | func (j *jsonEncoded) HasContainerLeaf() (bool, error) { |
nothing calls this directly
no test coverage detected