(enabled: boolean)
| 28 | } |
| 29 | |
| 30 | const setEnabled = (enabled: boolean) => { |
| 31 | isDisabled.value = !enabled; |
| 32 | sourceMapSteppingEnabled.write(this.context.workspaceState, enabled); |
| 33 | for (const session of this.tracker.getConcreteSessions()) { |
| 34 | session.customRequest('setSourceMapStepping', { enabled }); |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | context.subscriptions.push( |
| 39 | registerCommand(vscode.commands, Commands.EnableSourceMapStepping, () => { |
nothing calls this directly
no test coverage detected