MCPcopy
hub / github.com/microsoft/vscode-js-debug / all

Method all

src/binder.ts:684–692  ·  view source on GitHub ↗

* Returns an iterator that lists all targets in the tree.

()

Source from the content-addressed store, hash-verified

682 * Returns an iterator that lists all targets in the tree.
683 */
684 public *all(): IterableIterator<TargetTreeNode> {
685 if (isTargetTreeNode(this)) {
686 yield this;
687 }
688
689 for (const child of this._children) {
690 yield* child.all();
691 }
692 }
693}

Callers 15

delFunction · 0.80
gulpfile.jsFile · 0.80
compileTsFunction · 0.80
_terminateRootMethod · 0.80
_bootMethod · 0.80
_restartMethod · 0.80
waitUntilChildrenAreMethod · 0.80
_initMethod · 0.80
variablesTest.tsFile · 0.80
evaluate.tsFile · 0.80

Calls 1

isTargetTreeNodeFunction · 0.85

Tested by 2

streamAllChildrenFunction · 0.64