HasContainerLeaf implements the JSON interface.
()
| 736 | |
| 737 | // HasContainerLeaf implements the JSON interface. |
| 738 | func (j *jsonEncoded) HasContainerLeaf() (bool, error) { |
| 739 | decoded, err := j.decode() |
| 740 | if err != nil { |
| 741 | return false, err |
| 742 | } |
| 743 | return decoded.HasContainerLeaf() |
| 744 | } |
| 745 | |
| 746 | // preprocessForContains implements the JSON interface. |
| 747 | func (j *jsonEncoded) preprocessForContains() (containsable, error) { |
nothing calls this directly
no test coverage detected