| 39 | bool has_value() const { return value_.has_value(); } |
| 40 | |
| 41 | void set_value(Constant value) { value_ = std::move(value); } |
| 42 | |
| 43 | const Constant& value() const ABSL_ATTRIBUTE_LIFETIME_BOUND { return value_; } |
| 44 |
no outgoing calls
no test coverage detected