mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 00:21:38 -05:00
pass a 'More Information' url from the debug adapter to the frontend. fixes #3448
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"account": "monacobuild",
|
||||
"container": "debuggers",
|
||||
"zip": "add5842/node-debug.zip",
|
||||
"zip": "4271a18/node-debug.zip",
|
||||
"output": ""
|
||||
}
|
||||
|
||||
6
npm-shrinkwrap.json
generated
6
npm-shrinkwrap.json
generated
@@ -416,9 +416,9 @@
|
||||
"resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"
|
||||
},
|
||||
"vscode-debugprotocol": {
|
||||
"version": "1.5.0",
|
||||
"from": "vscode-debugprotocol@>=1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.5.0.tgz"
|
||||
"version": "1.6.1",
|
||||
"from": "vscode-debugprotocol@>=1.6.1",
|
||||
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.6.1.tgz"
|
||||
},
|
||||
"vscode-textmate": {
|
||||
"version": "1.0.11",
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
"native-keymap": "^0.1.2",
|
||||
"sax": "^1.1.1",
|
||||
"semver": "^4.2.0",
|
||||
"vscode-debugprotocol": "^1.5.0",
|
||||
"vscode-debugprotocol": "^1.6.1",
|
||||
"vscode-textmate": "^1.0.11",
|
||||
"weak": "^1.0.1",
|
||||
"winreg": "0.0.12",
|
||||
|
||||
@@ -53,7 +53,8 @@ declare module DebugProtocol {
|
||||
The sequence of events/requests is as follows:
|
||||
- adapters sends InitializedEvent (at any time)
|
||||
- frontend sends zero or more SetBreakpointsRequest
|
||||
- frontend sends one SetExceptionBreakpointsRequest (in the future 'zero or one')
|
||||
- frontend sends one SetFunctionBreakpointsRequest
|
||||
- frontend sends a SetExceptionBreakpointsRequest if one or more exceptionBreakpointFilters have been defined (or if supportsConfigurationDoneRequest is not defined or false)
|
||||
- frontend sends other configuration requests that are added in the future
|
||||
- frontend sends one ConfigurationDoneRequest
|
||||
*/
|
||||
@@ -62,7 +63,7 @@ declare module DebugProtocol {
|
||||
|
||||
/** Event message for "stopped" event type.
|
||||
The event indicates that the execution of the debugee has stopped due to a break condition.
|
||||
This can be caused by by a break point previously set, a stepping action has completed or by executing a debugger statement.
|
||||
This can be caused by a break point previously set, a stepping action has completed or by executing a debugger statement.
|
||||
*/
|
||||
export interface StoppedEvent extends Event {
|
||||
body: {
|
||||
@@ -238,10 +239,12 @@ declare module DebugProtocol {
|
||||
/** Response to "setBreakpoints" request.
|
||||
Returned is information about each breakpoint created by this request.
|
||||
This includes the actual code location and whether the breakpoint could be verified.
|
||||
The breakpoints returned are in the same order as the elements of the 'breakpoints'
|
||||
(or the deprecated 'lines') in the SetBreakpointsArguments.
|
||||
*/
|
||||
export interface SetBreakpointsResponse extends Response {
|
||||
body: {
|
||||
/** Information about the breakpoints. The array elements correspond to the elements of the 'breakpoints' (or the deprecated 'lines) array. */
|
||||
/** Information about the breakpoints. The array elements are in the same order as the elements of the 'breakpoints' (or the deprecated 'lines') in the SetBreakpointsArguments. */
|
||||
breakpoints: Breakpoint[];
|
||||
};
|
||||
}
|
||||
@@ -516,6 +519,10 @@ declare module DebugProtocol {
|
||||
sendTelemetry?: boolean;
|
||||
/** if true show user */
|
||||
showUser?: boolean;
|
||||
/** An optional url where additional information about this message can be found. */
|
||||
url?: string;
|
||||
/** An optional label that is presented to the user as the UI for opening the url. */
|
||||
urlLabel?: string;
|
||||
}
|
||||
|
||||
/** A Thread */
|
||||
|
||||
Reference in New Issue
Block a user