(other JSON)
| 428 | func (j jsonNull) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 429 | func (j jsonFalse) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 430 | func (j jsonTrue) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 431 | |
| 432 | func decodeIfNeeded(j JSON) (JSON, error) { |
| 433 | if enc, ok := j.(*jsonEncoded); ok { |
nothing calls this directly
no test coverage detected