MCPcopy Index your code
hub / github.com/microsoft/vscode-js-debug / OutputVariableContainer

Class OutputVariableContainer

src/adapter/variableStore.ts:766–774  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

764}
765
766class OutputVariableContainer implements IVariableContainer {
767 public readonly id = getVariableId();
768
769 constructor(private readonly child: Variable) {}
770
771 public getChildren(): Promise<IVariable[]> {
772 return Promise.resolve([this.child]);
773 }
774}
775
776class OutputVariable extends Variable {
777 constructor(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected