HasContainerLeaf implements the JSON interface.
()
| 750 | |
| 751 | // HasContainerLeaf implements the JSON interface. |
| 752 | func (j *jsonEncoded) HasContainerLeaf() (bool, error) { |
| 753 | decoded, err := j.decode() |
| 754 | if err != nil { |
| 755 | return false, err |
| 756 | } |
| 757 | return decoded.HasContainerLeaf() |
| 758 | } |
| 759 | |
| 760 | // preprocessForContains implements the JSON interface. |
| 761 | func (j *jsonEncoded) preprocessForContains() (containsable, error) { |
nothing calls this directly
no test coverage detected