| 167 | } |
| 168 | |
| 169 | absl::StatusOr<std::unique_ptr<ExpressionStep>> CreateIdentStepForSlot( |
| 170 | const absl::string_view name, size_t slot_index, int64_t expr_id) { |
| 171 | return std::make_unique<SlotStep>(name, slot_index, expr_id); |
| 172 | } |
| 173 | |
| 174 | } // namespace google::api::expr::runtime |