( children: TemplateChildNode[], source = '', )
| 589 | } |
| 590 | |
| 591 | export function createRoot( |
| 592 | children: TemplateChildNode[], |
| 593 | source = '', |
| 594 | ): RootNode { |
| 595 | return { |
| 596 | type: NodeTypes.ROOT, |
| 597 | source, |
| 598 | children, |
| 599 | helpers: new Set(), |
| 600 | components: [], |
| 601 | directives: [], |
| 602 | hoists: [], |
| 603 | imports: [], |
| 604 | cached: [], |
| 605 | temps: 0, |
| 606 | codegenNode: undefined, |
| 607 | loc: locStub, |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | export function createVNodeCall( |
| 612 | context: TransformContext | null, |
no outgoing calls
no test coverage detected