MCPcopy
hub / github.com/angular/angular / markNodesAsCreatedInitially

Function markNodesAsCreatedInitially

packages/core/test/acceptance/hmr_spec.ts:2420–2429  ·  view source on GitHub ↗
(root: HTMLElement)

Source from the content-addressed store, hash-verified

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[] = [];

Callers 1

hmr_spec.tsFile · 0.85

Calls 1

setMarkerFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…