typedef Capabilities
package vscode.debugProtocol
import vscode.debugProtocol.DebugProtocol
Information about the capabilities of a debug adapter.
Fields
optionalsupportsValueFormattingOptions:Null<Bool>
The debug adapter supports a 'format' attribute on the stackTraceRequest, variablesRequest, and evaluateRequest.
optionalsupportsTerminateThreadsRequest:Null<Bool>
The debug adapter supports the 'terminateThreads' request.
optionalsupportsSteppingGranularity:Null<Bool>
The debug adapter supports stepping granularities (argument 'granularity') for the stepping requests.
optionalsupportsStepBack:Null<Bool>
The debug adapter supports stepping back via the stepBack and reverseContinue requests.
optionalsupportsRestartRequest:Null<Bool>
The debug adapter supports the RestartRequest. In this case a client should not implement 'restart' by terminating and relaunching the adapter but by calling the RestartRequest.
optionalsupportsLogPoints:Null<Bool>
The debug adapter supports logpoints by interpreting the 'logMessage' attribute of the SourceBreakpoint.
optionalsupportsLoadedSourcesRequest:Null<Bool>
The debug adapter supports the 'loadedSources' request.
optionalsupportsInstructionBreakpoints:Null<Bool>
The debug adapter supports adding breakpoints based on instruction references
optionalsupportsHitConditionalBreakpoints:Null<Bool>
The debug adapter supports breakpoints that break execution after a specified number of hits.
optionalsupportsExceptionOptions:Null<Bool>
The debug adapter supports 'exceptionOptions' on the setExceptionBreakpoints request.
optionalsupportsExceptionInfoRequest:Null<Bool>
The debug adapter supports the exceptionInfo request.
optionalsupportsEvaluateForHovers:Null<Bool>
The debug adapter supports a (side effect free) evaluate request for data hovers.
optionalsupportsDelayedStackTraceLoading:Null<Bool>
The debug adapter supports the delayed loading of parts of the stack, which requires that both the 'startFrame' and 'levels' arguments and the 'totalFrames' result of the 'StackTrace' request are supported.
optionalsupportsConfigurationDoneRequest:Null<Bool>
The debug adapter supports the configurationDoneRequest.
optionalsupportsConditionalBreakpoints:Null<Bool>
The debug adapter supports conditional breakpoints.
optionalsupportsClipboardContext:Null<Bool>
The debug adapter supports the 'clipboard' context value in the 'evaluate' request.
optionalsupportsBreakpointLocationsRequest:Null<Bool>
The debug adapter supports the 'breakpointLocations' request.
optionalsupportedChecksumAlgorithms:Null<Array<ChecksumAlgorithm>>
Checksum algorithms supported by the debug adapter.
optionalsupportTerminateDebuggee:Null<Bool>
The debug adapter supports the 'terminateDebuggee' attribute on the 'disconnect' request.
optionalexceptionBreakpointFilters:Null<Array<ExceptionBreakpointsFilter>>
Available filters or options for the setExceptionBreakpoints request.
optionaladditionalModuleColumns:Null<Array<ColumnDescriptor>>
The set of additional module information exposed by the debug adapter.