()
| 940 | } |
| 941 | |
| 942 | override clone(): ConditionalExpr { |
| 943 | return new ConditionalExpr( |
| 944 | this.condition.clone(), |
| 945 | this.trueCase.clone(), |
| 946 | this.falseCase?.clone(), |
| 947 | this.type, |
| 948 | this.sourceSpan, |
| 949 | ); |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | export class DynamicImportExpr extends Expression { |