Repository URL to install this package:
|
Version:
1.3.1-1468329898 ▾
|
| .. |
| lib |
| package.json |
| README.md |
| LICENSE.txt |
This npm module contains declarations for the json-based Visual Studio Code debug protocol.
1.10.x:
stepBack request and a corresponding supportsStepBack capability.Module, a ModuleRequest, and a ModuleEventsetVariableRequesttype and kind for a Variable.endLine and endColumn to StackFrame and Breakpoint types.1.9.x:
allThreadsContinued attribute on the ContinueResponse to indicate that all threads are continued and not only the one specified.1.8.x:
ExceptionBreakpointsFilter and fixed corresponding capability.noDebug attribute to LaunchRequestArguments.startFrame argument to StackTraceArguments to allow for paging.totalFrames argument to StackTraceResponse to allow for paging.InitializedEvent must not be sent before InitializeRequest has returned its result.1.7.x:
url and urlLabel attributes to the error messages. The frontend will show this as a UI to open additional information in a browser.default attribute to the exceptionBreakpointFilters capability.allThreadsStopped to the StoppedEvent to indicate that all threads are stopped (and not only the one mentioned in the event).1.6.x:
supportsConditionalBreakpoints in Capabilities indicates whether the debug adapter supports conditional breakpoints.exceptionBreakpointFilters capability that lists the filters available for the setExceptionBreakpoints request.restart attribute to the TerminatedEvent which can be used to request a restart of the debug session.1.5.x:
supportsFunctionBreakpoints in Capabilities indicates whether the debug adapter implements the function breakpoints.supportEvaluateForHovers in Capabilities to supportsEvaluateForHovers.1.4.x:
body of the InitializeResponse optional (for backward compatibility).1.3.x: Version introduces support for feature negotiation.
InitializeResponse has now attributes for these features:
supportsConfigurationDoneRequest indicates whether the debug adapter implements the ConfigurationDoneRequest.supportEvaluateForHovers indicates whether the debug adapter supports a side effect free EvaluateRequest.data attribute to the OutputEvent and a telemetry category.hover to the context attribute of the EvaluateArguments.1.2.x: Version adds a new request:
ConfigurationDoneRequest that VS Code sends to indicate that the configuration of the debug session has finished and that debugging can start.1.1.x: Version adds support for conditional breakpoints and breakpoints in virtual documents:
Source supports optional origin attribute to provide information that is shown in the debug UI.Source supports an optional adapterData attribute that the VS Code debug UI will transparently persists for breakpoints.SourceBreakpoint that makes it possible to provide column and condition information when specifying a breakpoint.1.0.1: Initial version of the debug protocol