(node: Node & {children: Node[]})
| 521 | } |
| 522 | |
| 523 | private appendChildren(node: Node & {children: Node[]}) { |
| 524 | for (const child of node.children) { |
| 525 | this.appendNode(child); |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | private checkAndAppendReferencesOfNode(node: Element | Template | Component | Directive): void { |
| 530 | for (const ref of node.references) { |
no test coverage detected