()
| 510 | } |
| 511 | |
| 512 | override clone(): TaggedTemplateLiteralExpr { |
| 513 | return new TaggedTemplateLiteralExpr( |
| 514 | this.tag.clone(), |
| 515 | this.template.clone(), |
| 516 | this.type, |
| 517 | this.sourceSpan, |
| 518 | ); |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | export class InstantiateExpr extends Expression { |