Method
clone
(partial?: Partial<MultiQueryStepConfig>)
Source from the content-addressed store, hash-verified
| 4314 | } |
| 4315 | |
| 4316 | public override clone(partial?: Partial<MultiQueryStepConfig>) { |
| 4317 | return new MultiQueryStep( |
| 4318 | { |
| 4319 | stepLabels: |
| 4320 | partial?.stepLabels ?? (this.config.stepLabels ? [...this.config.stepLabels] : undefined), |
| 4321 | }, |
| 4322 | this.#statements.map((statement) => statement.map((step) => step.clone())), |
| 4323 | ); |
| 4324 | } |
| 4325 | } |
| 4326 | |
| 4327 | export interface IntersectStepConfig extends StepConfig {} |
Callers
nothing calls this directly
Tested by
no test coverage detected