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

Method value

src/ui/managedContextKey.ts:11–16  ·  view source on GitHub ↗
(value: IContextKeyTypes[T] | undefined)

Source from the content-addressed store, hash-verified

9 private _value: IContextKeyTypes[T] | undefined;
10
11 public set value(value: IContextKeyTypes[T] | undefined) {
12 if (value !== this._value) {
13 this._value = value;
14 vscode.commands.executeCommand('setContext', this.key, value);
15 }
16 }
17
18 public get value() {
19 return this._value;

Callers 4

terminateMethod · 0.45
restartMethod · 0.45
targetListMethod · 0.45
targetListFunction · 0.45

Calls 1

executeCommandMethod · 0.80

Tested by

no test coverage detected