(other JSON)
| 378 | func (j jsonNull) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 379 | func (j jsonFalse) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 380 | func (j jsonTrue) Compare(other JSON) (int, error) { return cmpJSONTypes(j.Type(), other.Type()), nil } |
| 381 | |
| 382 | func decodeIfNeeded(j JSON) (JSON, error) { |
| 383 | if enc, ok := j.(*jsonEncoded); ok { |
no test coverage detected