(other JSON)
| 651 | } |
| 652 | |
| 653 | func (j jsonNull) Compare(other JSON) (int, error) { |
| 654 | if isEmptyArray(other) { |
| 655 | return 1, nil |
| 656 | } |
| 657 | return cmpJSONTypes(j.Type(), other.Type()), nil |
| 658 | } |
| 659 | func (j jsonFalse) Compare(other JSON) (int, error) { |
| 660 | if isEmptyArray(other) { |
| 661 | return 1, nil |
no test coverage detected