Returns the source text representation of the operator. This is the unmanaged text representation of the operator, for example "&&". Note that this will be empty for operators like Conditional() and Index().
| 136 | // |
| 137 | // Note that this will be empty for operators like Conditional() and Index(). |
| 138 | constexpr absl::string_view display_name() const { |
| 139 | return data_->display_name; |
| 140 | } |
| 141 | |
| 142 | constexpr int precedence() const { return data_->precedence; } |
| 143 |