Skip to content

Commit 24bf6ec

Browse files
committed
1 parent c6ffb61 commit 24bf6ec

2 files changed

Lines changed: 2 additions & 17 deletions

File tree

src/vs/vscode.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9308,10 +9308,10 @@ declare module 'vscode' {
93089308
* Folder specific variables used in the configuration (e.g. '${workspaceFolder}') are resolved against the given folder.
93099309
* @param folder The [workspace folder](#WorkspaceFolder) for looking up named configurations and resolving variables or `undefined` for a non-folder setup.
93109310
* @param nameOrConfiguration Either the name of a debug or compound configuration or a [DebugConfiguration](#DebugConfiguration) object.
9311-
* @param parent If specified the newly created debug session is registered as a "child" session of a "parent" debug session.
9311+
* @param parentSessionOrOptions Debug sesison options. When passed a parent [debug session](#DebugSession), assumes options with just this parent session.
93129312
* @return A thenable that resolves when debugging could be successfully started.
93139313
*/
9314-
export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, parentSession?: DebugSession): Thenable<boolean>;
9314+
export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, parentSessionOrOptions?: DebugSession | DebugSessionOptions): Thenable<boolean>;
93159315

93169316
/**
93179317
* Add breakpoints.

src/vs/vscode.proposed.d.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -651,21 +651,6 @@ declare module 'vscode' {
651651
consoleMode?: DebugConsoleMode;
652652
}
653653

654-
export namespace debug {
655-
/**
656-
* Start debugging by using either a named launch or named compound configuration,
657-
* or by directly passing a [DebugConfiguration](#DebugConfiguration).
658-
* The named configurations are looked up in '.vscode/launch.json' found in the given folder.
659-
* Before debugging starts, all unsaved files are saved and the launch configurations are brought up-to-date.
660-
* Folder specific variables used in the configuration (e.g. '${workspaceFolder}') are resolved against the given folder.
661-
* @param folder The [workspace folder](#WorkspaceFolder) for looking up named configurations and resolving variables or `undefined` for a non-folder setup.
662-
* @param nameOrConfiguration Either the name of a debug or compound configuration or a [DebugConfiguration](#DebugConfiguration) object.
663-
* @param parentSessionOrOptions Debug sesison options. When passed a parent [debug session](#DebugSession), assumes options with just this parent session.
664-
* @return A thenable that resolves when debugging could be successfully started.
665-
*/
666-
export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, parentSessionOrOptions?: DebugSession | DebugSessionOptions): Thenable<boolean>;
667-
}
668-
669654
//#endregion
670655

671656
//#region Rob, Matt: logging

0 commit comments

Comments
 (0)