| 73 | } |
| 74 | |
| 75 | absl::Status IdentStep::Evaluate(ExecutionFrame* frame) const { |
| 76 | Value value; |
| 77 | AttributeTrail attribute; |
| 78 | |
| 79 | CEL_RETURN_IF_ERROR(LookupIdent(name_, *frame, value, attribute)); |
| 80 | |
| 81 | frame->value_stack().Push(std::move(value), std::move(attribute)); |
| 82 | |
| 83 | return absl::OkStatus(); |
| 84 | } |
| 85 | |
| 86 | absl::StatusOr<ComprehensionSlots::Slot* absl_nonnull> LookupSlot( |
| 87 | absl::string_view name, size_t slot_index, ExecutionFrameBase& frame) { |