()
| 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) { |
nothing calls this directly
no test coverage detected