()
| 973 | } |
| 974 | |
| 975 | override clone(): DynamicImportExpr { |
| 976 | return new DynamicImportExpr( |
| 977 | typeof this.url === 'string' ? this.url : this.url.clone(), |
| 978 | this.sourceSpan, |
| 979 | this.urlComment, |
| 980 | ); |
| 981 | } |
| 982 | } |
| 983 | |
| 984 | export class NotExpr extends Expression { |