| 23 | using ::cel::Value; |
| 24 | |
| 25 | absl::Status DirectCompilerConstantStep::Evaluate( |
| 26 | ExecutionFrameBase& frame, Value& result, AttributeTrail& attribute) const { |
| 27 | result = value_; |
| 28 | return absl::OkStatus(); |
| 29 | } |
| 30 | |
| 31 | absl::Status CompilerConstantStep::Evaluate(ExecutionFrame* frame) const { |
| 32 | frame->value_stack().Push(value_); |