Skip to content

Commit fbdc292

Browse files
author
isidor
committed
finalize: noDebug and compact flag in DebugSesionOptions
fixes microsoft#100852 fixes microsoft#99743
1 parent af804aa commit fbdc292

2 files changed

Lines changed: 13 additions & 15 deletions

File tree

src/vs/vscode.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11147,6 +11147,19 @@ declare module 'vscode' {
1114711147
* Defaults to Separate.
1114811148
*/
1114911149
consoleMode?: DebugConsoleMode;
11150+
11151+
/**
11152+
* Controls whether this session should run without debugging, thus ignoring breakpoints.
11153+
* When this property is not specified, the value from the parent session (if there is one) is used.
11154+
*/
11155+
noDebug?: boolean;
11156+
11157+
/**
11158+
* Controls if the debug session's parent session is shown in the CALL STACK view even if it has only a single child.
11159+
* By default, the debug session will never hide its parent.
11160+
* If compact is true, debug sessions with a single child are hidden in the CALL STACK view to make the tree more compact.
11161+
*/
11162+
compact?: boolean;
1115011163
}
1115111164

1115211165
/**

src/vs/vscode.proposed.d.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -737,21 +737,6 @@ declare module 'vscode' {
737737

738738
//#region debug
739739

740-
export interface DebugSessionOptions {
741-
/**
742-
* Controls whether this session should run without debugging, thus ignoring breakpoints.
743-
* When this property is not specified, the value from the parent session (if there is one) is used.
744-
*/
745-
noDebug?: boolean;
746-
747-
/**
748-
* Controls if the debug session's parent session is shown in the CALL STACK view even if it has only a single child.
749-
* By default, the debug session will never hide its parent.
750-
* If compact is true, debug sessions with a single child are hidden in the CALL STACK view to make the tree more compact.
751-
*/
752-
compact?: boolean;
753-
}
754-
755740
/**
756741
* A DebugProtocolBreakpoint is an opaque stand-in type for the [Breakpoint](https://microsoft.github.io/debug-adapter-protocol/specification#Types_Breakpoint) type defined in the Debug Adapter Protocol.
757742
*/

0 commit comments

Comments
 (0)