()
| 470 | } |
| 471 | |
| 472 | override clone(): InvokeFunctionExpr { |
| 473 | return new InvokeFunctionExpr( |
| 474 | this.fn.clone(), |
| 475 | this.args.map((arg) => arg.clone()), |
| 476 | this.type, |
| 477 | this.sourceSpan, |
| 478 | this.pure, |
| 479 | [], |
| 480 | this.isOptional, |
| 481 | ); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | export class TaggedTemplateLiteralExpr extends Expression { |