| 3025 | ValueType Value::type() const { return type_; } |
| 3026 | |
| 3027 | int Value::compare(const Value& other) const { |
| 3028 | if (*this < other) |
| 3029 | return -1; |
| 3030 | if (*this > other) |
| 3031 | return 1; |
| 3032 | return 0; |
| 3033 | } |
| 3034 | |
| 3035 | bool Value::operator<(const Value& other) const { |
| 3036 | int typeDelta = type_ - other.type_; |
no outgoing calls