preprocessForContains implements the JSON interface.
()
| 745 | |
| 746 | // preprocessForContains implements the JSON interface. |
| 747 | func (j *jsonEncoded) preprocessForContains() (containsable, error) { |
| 748 | if dec := j.alreadyDecoded(); dec != nil { |
| 749 | return dec.preprocessForContains() |
| 750 | } |
| 751 | |
| 752 | decoded, err := j.decode() |
| 753 | if err != nil { |
| 754 | return nil, err |
| 755 | } |
| 756 | return decoded.preprocessForContains() |
| 757 | } |
| 758 | |
| 759 | // jEntry implements the JSON interface. |
| 760 | func (j *jsonEncoded) jEntry() jEntry { |
nothing calls this directly
no test coverage detected