mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Merge from vscode 6e530127a1bb8ffbd1bfb77dc680c321dc0d71f5 (#6844)
This commit is contained in:
@@ -168,7 +168,7 @@ declare module DebugProtocol {
|
||||
category?: string;
|
||||
/** The output to report. */
|
||||
output: string;
|
||||
/** 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. */
|
||||
/** 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. */
|
||||
source?: Source;
|
||||
@@ -284,9 +284,9 @@ declare module DebugProtocol {
|
||||
/** Response to 'runInTerminal' request. */
|
||||
export interface RunInTerminalResponse extends Response {
|
||||
body: {
|
||||
/** The process ID. */
|
||||
/** The process ID. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
processId?: number;
|
||||
/** The process ID of the terminal shell. */
|
||||
/** The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
shellProcessId?: number;
|
||||
};
|
||||
}
|
||||
@@ -757,7 +757,7 @@ declare module DebugProtocol {
|
||||
}
|
||||
|
||||
/** Pause request; value of command field is 'pause'.
|
||||
The request suspenses the debuggee.
|
||||
The request suspends the debuggee.
|
||||
The debug adapter first sends the response and then a 'stopped' event (with reason 'pause') after the thread has been paused successfully.
|
||||
*/
|
||||
export interface PauseRequest extends Request {
|
||||
@@ -842,7 +842,7 @@ declare module DebugProtocol {
|
||||
export interface VariablesArguments {
|
||||
/** The Variable reference. */
|
||||
variablesReference: number;
|
||||
/** Optional filter to limit the child variables to either named or indexed. If ommited, both types are fetched. */
|
||||
/** Optional filter to limit the child variables to either named or indexed. If omitted, both types are fetched. */
|
||||
filter?: 'indexed' | 'named';
|
||||
/** The index of the first variable to return; if omitted children start at 0. */
|
||||
start?: number;
|
||||
@@ -887,14 +887,14 @@ declare module DebugProtocol {
|
||||
value: string;
|
||||
/** The type of the new value. Typically shown in the UI when hovering over the value. */
|
||||
type?: string;
|
||||
/** If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. */
|
||||
/** If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
variablesReference?: number;
|
||||
/** The number of named child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
namedVariables?: number;
|
||||
/** The number of indexed child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
indexedVariables?: number;
|
||||
};
|
||||
@@ -1041,14 +1041,14 @@ declare module DebugProtocol {
|
||||
type?: string;
|
||||
/** Properties of a evaluate result that can be used to determine how to render the result in the UI. */
|
||||
presentationHint?: VariablePresentationHint;
|
||||
/** If variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. */
|
||||
/** If variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
variablesReference: number;
|
||||
/** The number of named child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
namedVariables?: number;
|
||||
/** The number of indexed child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
indexedVariables?: number;
|
||||
/** Memory reference to a location appropriate for this result. For pointer type eval results, this is generally a reference to the memory address contained in the pointer. */
|
||||
@@ -1086,14 +1086,14 @@ declare module DebugProtocol {
|
||||
type?: string;
|
||||
/** Properties of a value that can be used to determine how to render the result in the UI. */
|
||||
presentationHint?: VariablePresentationHint;
|
||||
/** If variablesReference is > 0, the value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. */
|
||||
/** If variablesReference is > 0, the value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
variablesReference?: number;
|
||||
/** The number of named child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
namedVariables?: number;
|
||||
/** The number of indexed child variables.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
|
||||
The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
|
||||
*/
|
||||
indexedVariables?: number;
|
||||
};
|
||||
@@ -1294,6 +1294,8 @@ declare module DebugProtocol {
|
||||
supportsStepInTargetsRequest?: boolean;
|
||||
/** The debug adapter supports the 'completions' request. */
|
||||
supportsCompletionsRequest?: boolean;
|
||||
/** The set of characters that should trigger completion in a REPL. If not specified, the UI should assume the '.' character. */
|
||||
completionTriggerCharacters?: string[];
|
||||
/** The debug adapter supports the 'modules' request. */
|
||||
supportsModulesRequest?: boolean;
|
||||
/** The set of additional module information exposed by the debug adapter. */
|
||||
@@ -1433,7 +1435,7 @@ declare module DebugProtocol {
|
||||
name?: string;
|
||||
/** The path of the source to be shown in the UI. It is only used to locate and load the content of the source if no sourceReference is specified (or its value is 0). */
|
||||
path?: string;
|
||||
/** If sourceReference > 0 the contents of the source must be retrieved through the SourceRequest (even if a path is specified). A sourceReference is only valid for a session, so it must not be used to persist a source. */
|
||||
/** If sourceReference > 0 the contents of the source must be retrieved through the SourceRequest (even if a path is specified). A sourceReference is only valid for a session, so it must not be used to persist a source. The value should be less than or equal to 2147483647 (2^31 - 1). */
|
||||
sourceReference?: number;
|
||||
/** An optional hint for how to present the source in the UI. A value of 'deemphasize' can be used to indicate that the source is not available or that it is skipped on stepping. */
|
||||
presentationHint?: 'normal' | 'emphasize' | 'deemphasize';
|
||||
@@ -1668,6 +1670,8 @@ declare module DebugProtocol {
|
||||
label: string;
|
||||
/** If text is not falsy then it is inserted instead of the label. */
|
||||
text?: string;
|
||||
/** A string that should be used when comparing this item with other items. When `falsy` the label is used. */
|
||||
sortText?: string;
|
||||
/** The item's type. Typically the client uses this information to render the item in the UI with an icon. */
|
||||
type?: CompletionItemType;
|
||||
/** This value determines the location (in the CompletionsRequest's 'text' attribute) where the completion text is added.
|
||||
@@ -1729,7 +1733,7 @@ declare module DebugProtocol {
|
||||
/** This enumeration defines all possible conditions when a thrown exception should result in a break.
|
||||
never: never breaks,
|
||||
always: always breaks,
|
||||
unhandled: breaks when excpetion unhandled,
|
||||
unhandled: breaks when exception unhandled,
|
||||
userUnhandled: breaks if the exception is not handled by user code.
|
||||
*/
|
||||
export type ExceptionBreakMode = 'never' | 'always' | 'unhandled' | 'userUnhandled';
|
||||
@@ -1766,7 +1770,7 @@ declare module DebugProtocol {
|
||||
instructionBytes?: string;
|
||||
/** Text representing the instruction and its operands, in an implementation-defined format. */
|
||||
instruction: string;
|
||||
/** Name of the symbol that correponds with the location of this instruction, if any. */
|
||||
/** Name of the symbol that corresponds with the location of this instruction, if any. */
|
||||
symbol?: string;
|
||||
/** Source location that corresponds to this instruction, if any. Should always be set (if available) on the first instruction returned, but can be omitted afterwards if this instruction maps to the same source file as the previous instruction. */
|
||||
location?: Source;
|
||||
|
||||
Reference in New Issue
Block a user