(root: HTMLElement)
| 2418 | } |
| 2419 | |
| 2420 | function markNodesAsCreatedInitially(root: HTMLElement) { |
| 2421 | let current: Node | null = root; |
| 2422 | while (current) { |
| 2423 | setMarker(current); |
| 2424 | if (current.firstChild) { |
| 2425 | markNodesAsCreatedInitially(current.firstChild as HTMLElement); |
| 2426 | } |
| 2427 | current = current.nextSibling; |
| 2428 | } |
| 2429 | } |
| 2430 | |
| 2431 | function childrenOf(...nodes: Node[]): Node[] { |
| 2432 | const result: Node[] = []; |
no test coverage detected
searching dependent graphs…