MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / onConfigSelect

Method onConfigSelect

Extension/ui/settings.ts:191–203  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

189 }
190
191 private onConfigSelect(): void {
192 if (this.updating) {
193 return;
194 }
195
196 const el: HTMLSelectElement = <HTMLSelectElement>document.getElementById(elementId.configSelection);
197 (<HTMLInputElement>document.getElementById(elementId.configName)).value = el.value;
198
199 this.vsCodeApi.postMessage({
200 command: "configSelect",
201 index: el.selectedIndex
202 });
203 }
204
205 private onKnownCompilerSelect(): void {
206 if (this.updating) {

Callers

nothing calls this directly

Calls 1

postMessageMethod · 0.80

Tested by

no test coverage detected