mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 09:35:37 -05:00
Merge from vscode 9bc92b48d945144abb405b9e8df05e18accb9148
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
/** Declaration module describing the VS Code debug protocol.
|
||||
Auto-generated from json schema. Do not edit manually.
|
||||
*/
|
||||
@@ -98,7 +99,7 @@ declare module DebugProtocol {
|
||||
The sequence of events/requests is as follows:
|
||||
- adapters sends 'initialized' event (after the 'initialize' request has returned)
|
||||
- frontend sends zero or more 'setBreakpoints' requests
|
||||
- frontend sends one 'setFunctionBreakpoints' request
|
||||
- frontend sends one 'setFunctionBreakpoints' request (if capability 'supportsFunctionBreakpoints' is true)
|
||||
- frontend sends a 'setExceptionBreakpoints' request if one or more 'exceptionBreakpointFilters' have been defined (or if 'supportsConfigurationDoneRequest' is not defined or false)
|
||||
- frontend sends other future configuration requests
|
||||
- frontend sends one 'configurationDone' request to indicate the end of the configuration.
|
||||
@@ -201,6 +202,15 @@ declare module DebugProtocol {
|
||||
category?: string;
|
||||
/** The output to report. */
|
||||
output: string;
|
||||
/** Support for keeping an output log organized by grouping related messages.
|
||||
'start': Start a new group in expanded mode. Subsequent output events are members of the group and should be shown indented.
|
||||
The 'output' attribute becomes the name of the group and is not indented.
|
||||
'startCollapsed': Start a new group in collapsed mode. Subsequent output events are members of the group and should be shown indented (as soon as the group is expanded).
|
||||
The 'output' attribute becomes the name of the group and is not indented.
|
||||
'end': End the current group and decreases the indentation of subsequent output events.
|
||||
A non empty 'output' attribute is shown as the unindented end of the group.
|
||||
*/
|
||||
group?: 'start' | 'startCollapsed' | 'end';
|
||||
/** If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be retrieved by passing 'variablesReference' to the 'variables' request. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
variablesReference?: number;
|
||||
/** An optional source location where the output was produced. */
|
||||
|
||||
Reference in New Issue
Block a user