| 162 | } |
| 163 | |
| 164 | absl::StatusOr<std::unique_ptr<ExpressionStep>> CreateIdentStep( |
| 165 | const absl::string_view name, int64_t expr_id) { |
| 166 | return std::make_unique<IdentStep>(name, expr_id); |
| 167 | } |
| 168 | |
| 169 | absl::StatusOr<std::unique_ptr<ExpressionStep>> CreateIdentStepForSlot( |
| 170 | const absl::string_view name, size_t slot_index, int64_t expr_id) { |
no outgoing calls