mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
make proposed Debug API official; fixes #30096
This commit is contained in:
@@ -463,12 +463,12 @@ export function createApiFactory(
|
||||
|
||||
// namespace: debug
|
||||
const debug: typeof vscode.debug = {
|
||||
createDebugSession: proposedApiFunction(extension, (config: vscode.DebugConfiguration) => {
|
||||
createDebugSession(config: vscode.DebugConfiguration) {
|
||||
return extHostDebugService.createDebugSession(config);
|
||||
}),
|
||||
onDidTerminateDebugSession: proposedApiFunction(extension, (listener, thisArg?, disposables?) => {
|
||||
},
|
||||
onDidTerminateDebugSession(listener, thisArg?, disposables?) {
|
||||
return extHostDebugService.onDidTerminateDebugSession(listener, thisArg, disposables);
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user