Package ortus.boxlang.debugger.response
Class InitializeResponse.Capabilities
java.lang.Object
ortus.boxlang.debugger.response.InitializeResponse.Capabilities
- Enclosing class:
InitializeResponse
-
Field Summary
FieldsModifier and TypeFieldDescriptionAvailable exception filter options for the `setExceptionBreakpoints` request.boolean
The debug adapter supports the `breakpointLocations` request.boolean
The debug adapter supports the `cancel` request.boolean
The debug adapter supports the `clipboard` context value in the `evaluate` request.boolean
The debug adapter supports the `completions` request.boolean
The debug adapter supports conditional breakpoints.boolean
The debug adapter supports the `configurationDone` request.boolean
The debug adapter supports data breakpoints.boolean
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.boolean
The debug adapter supports the `disassemble` request.boolean
The debug adapter supports a (side effect free) `evaluate` request for data hovers.boolean
The debug adapter supports `filterOptions` as an argument on the `setExceptionBreakpoints` request.boolean
The debug adapter supports the `exceptionInfo` request.boolean
The debug adapter supports `exceptionOptions` on the `setExceptionBreakpoints` request.boolean
The debug adapter supports function breakpoints.boolean
The debug adapter supports the `gotoTargets` request.boolean
The debug adapter supports breakpoints that break execution after a specified number of hits.boolean
The debug adapter supports adding breakpoints based on instruction references.boolean
The debug adapter supports the `loadedSources` request.boolean
The debug adapter supports log points by interpreting the `logMessage` attribute of the `SourceBreakpoint`.boolean
The debug adapter supports the `modules` request.boolean
The debug adapter supports the `readMemory` request.boolean
The debug adapter supports restarting a frame.boolean
The debug adapter supports the `restart` request.boolean
The debug adapter supports the `setExpression` request.boolean
The debug adapter supports setting a variable to a value.boolean
The debug adapter supports the `singleThread` property on the execution requests (`continue`, `next`, `stepIn`, `stepOut`, `reverseContinue`, `stepBack`).boolean
The debug adapter supports stepping back via the `stepBack` and `reverseContinue` requests.boolean
The debug adapter supports the `stepInTargets` request.boolean
The debug adapter supports stepping granularities (argument `granularity`) for the stepping requests.boolean
The debug adapter supports the `terminate` request.boolean
The debug adapter supports the `terminateThreads` request.boolean
The debug adapter supports the `suspendDebuggee` attribute on the `disconnect` request.boolean
The debug adapter supports a `format` attribute on the `stackTrace`, `variables`, and `evaluate` requests.boolean
The debug adapter supports the `writeMemory` request.boolean
The debug adapter supports the `terminateDebuggee` attribute on the `disconnect` request. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
supportsConfigurationDoneRequest
public boolean supportsConfigurationDoneRequestThe debug adapter supports the `configurationDone` request. -
supportsFunctionBreakpoints
public boolean supportsFunctionBreakpointsThe debug adapter supports function breakpoints. -
supportsConditionalBreakpoints
public boolean supportsConditionalBreakpointsThe debug adapter supports conditional breakpoints. -
supportsHitConditionalBreakpoints
public boolean supportsHitConditionalBreakpointsThe debug adapter supports breakpoints that break execution after a specified number of hits. -
supportsEvaluateForHovers
public boolean supportsEvaluateForHoversThe debug adapter supports a (side effect free) `evaluate` request for data hovers. -
exceptionBreakpointFilters
Available exception filter options for the `setExceptionBreakpoints` request. -
supportsStepBack
public boolean supportsStepBackThe debug adapter supports stepping back via the `stepBack` and `reverseContinue` requests. -
supportsSetVariable
public boolean supportsSetVariableThe debug adapter supports setting a variable to a value. -
supportsRestartFrame
public boolean supportsRestartFrameThe debug adapter supports restarting a frame. -
supportsGotoTargetsRequest
public boolean supportsGotoTargetsRequestThe debug adapter supports the `gotoTargets` request. -
supportsStepInTargetsRequest
public boolean supportsStepInTargetsRequestThe debug adapter supports the `stepInTargets` request. -
supportsCompletionsRequest
public boolean supportsCompletionsRequestThe debug adapter supports the `completions` request. -
supportsModulesRequest
public boolean supportsModulesRequestThe debug adapter supports the `modules` request. -
supportsRestartRequest
public boolean supportsRestartRequestThe debug adapter supports the `restart` request. In this case a client should not implement `restart` by terminating and relaunching the adapter but by calling the `restart` request. -
supportsExceptionOptions
public boolean supportsExceptionOptionsThe debug adapter supports `exceptionOptions` on the `setExceptionBreakpoints` request. -
supportsValueFormattingOptions
public boolean supportsValueFormattingOptionsThe debug adapter supports a `format` attribute on the `stackTrace`, `variables`, and `evaluate` requests. -
supportsExceptionInfoRequest
public boolean supportsExceptionInfoRequestThe debug adapter supports the `exceptionInfo` request. -
supportTerminateDebuggee
public boolean supportTerminateDebuggeeThe debug adapter supports the `terminateDebuggee` attribute on the `disconnect` request. -
supportSuspendDebuggee
public boolean supportSuspendDebuggeeThe debug adapter supports the `suspendDebuggee` attribute on the `disconnect` request. -
supportsDelayedStackTraceLoading
public boolean supportsDelayedStackTraceLoadingThe 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. -
supportsLoadedSourcesRequest
public boolean supportsLoadedSourcesRequestThe debug adapter supports the `loadedSources` request. -
supportsLogPoints
public boolean supportsLogPointsThe debug adapter supports log points by interpreting the `logMessage` attribute of the `SourceBreakpoint`. -
supportsTerminateThreadsRequest
public boolean supportsTerminateThreadsRequestThe debug adapter supports the `terminateThreads` request. -
supportsSetExpression
public boolean supportsSetExpressionThe debug adapter supports the `setExpression` request. -
supportsTerminateRequest
public boolean supportsTerminateRequestThe debug adapter supports the `terminate` request. -
supportsDataBreakpoints
public boolean supportsDataBreakpointsThe debug adapter supports data breakpoints. -
supportsReadMemoryRequest
public boolean supportsReadMemoryRequestThe debug adapter supports the `readMemory` request. -
supportsWriteMemoryRequest
public boolean supportsWriteMemoryRequestThe debug adapter supports the `writeMemory` request. -
supportsDisassembleRequest
public boolean supportsDisassembleRequestThe debug adapter supports the `disassemble` request. -
supportsCancelRequest
public boolean supportsCancelRequestThe debug adapter supports the `cancel` request. -
supportsBreakpointLocationsRequest
public boolean supportsBreakpointLocationsRequestThe debug adapter supports the `breakpointLocations` request. -
supportsClipboardContext
public boolean supportsClipboardContextThe debug adapter supports the `clipboard` context value in the `evaluate` request. -
supportsSteppingGranularity
public boolean supportsSteppingGranularityThe debug adapter supports stepping granularities (argument `granularity`) for the stepping requests. -
supportsInstructionBreakpoints
public boolean supportsInstructionBreakpointsThe debug adapter supports adding breakpoints based on instruction references. -
supportsExceptionFilterOptions
public boolean supportsExceptionFilterOptionsThe debug adapter supports `filterOptions` as an argument on the `setExceptionBreakpoints` request. -
supportsSingleThreadExecutionRequests
public boolean supportsSingleThreadExecutionRequestsThe debug adapter supports the `singleThread` property on the execution requests (`continue`, `next`, `stepIn`, `stepOut`, `reverseContinue`, `stepBack`).
-
-
Constructor Details
-
Capabilities
public Capabilities()
-