MCPcopy Index your code
hub / github.com/angular/angular / queryAllNodes

Method queryAllNodes

packages/core/src/debug/debug_node.ts:337–341  ·  view source on GitHub ↗

* @returns All `DebugNode` matches for the predicate at any depth in the subtree.

(predicate: Predicate<DebugNode>)

Source from the content-addressed store, hash-verified

335 * @returns All `DebugNode` matches for the predicate at any depth in the subtree.
336 */
337 queryAllNodes(predicate: Predicate<DebugNode>): DebugNode[] {
338 const matches: DebugNode[] = [];
339 _queryAll(this, predicate, matches, false);
340 return matches;
341 }
342
343 /**
344 * Triggers the event by its name if there is a corresponding listener in the element's

Callers 5

queryDirsFunction · 0.80
debug_node_spec.tsFile · 0.80
directive_spec.tsFile · 0.80

Calls 1

_queryAllFunction · 0.85

Tested by

no test coverage detected