| 2969 | ValueType Value::type() const { return type_; } |
| 2970 | |
| 2971 | int Value::compare(const Value& other) const { |
| 2972 | if (*this < other) |
| 2973 | return -1; |
| 2974 | if (*this > other) |
| 2975 | return 1; |
| 2976 | return 0; |
| 2977 | } |
| 2978 | |
| 2979 | bool Value::operator<(const Value& other) const { |
| 2980 | int typeDelta = type_ - other.type_; |
no outgoing calls
no test coverage detected