MCPcopy Index your code
hub / github.com/angular/components / getRecursiveData

Method getRecursiveData

src/cdk/tree/tree.spec.ts:1615–1619  ·  view source on GitHub ↗
(nodes: TestData[] = this._dataChange.getValue())

Source from the content-addressed store, hash-verified

1613 }
1614
1615 getRecursiveData(nodes: TestData[] = this._dataChange.getValue()): TestData[] {
1616 return [
1617 ...new Set(nodes.flatMap(parent => [parent, ...this.getRecursiveData(parent.children)])),
1618 ];
1619 }
1620
1621 clear() {
1622 this.data = [];

Callers 1

tree.spec.tsFile · 0.80

Calls 1

getValueMethod · 0.45

Tested by

no test coverage detected