| 48 | nonneg int getExpressionId() const; |
| 49 | |
| 50 | bool operator==(const ExprIdToken& rhs) const { |
| 51 | return getExpressionId() == rhs.getExpressionId(); |
| 52 | } |
| 53 | |
| 54 | bool operator<(const ExprIdToken& rhs) const { |
| 55 | return getExpressionId() < rhs.getExpressionId(); |
nothing calls this directly
no test coverage detected