| 919 | ABSL_MUST_USE_RESULT ExprKind release_kind(); |
| 920 | |
| 921 | ABSL_MUST_USE_RESULT bool has_const_expr() const { |
| 922 | return absl::holds_alternative<Constant>(kind()); |
| 923 | } |
| 924 | |
| 925 | ABSL_MUST_USE_RESULT const Constant& const_expr() const |
| 926 | ABSL_ATTRIBUTE_LIFETIME_BOUND { |