Class EvaluateResponse.ResponseBody
java.lang.Object
com.oracle.truffle.tools.dap.types.JSONBase
com.oracle.truffle.tools.dap.types.EvaluateResponse.ResponseBody
- Enclosing class:
EvaluateResponse
-
Method Summary
Modifier and TypeMethodDescriptionbooleanThe number of indexed child variables.Optional memory reference to a location appropriate for this result.The number of named child variables.Properties of a evaluate result that can be used to determine how to render the result in the UI.The result of the evaluate request.getType()The optional type of the evaluate result.intIf variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.inthashCode()setIndexedVariables(Integer indexedVariables) setMemoryReference(String memoryReference) setNamedVariables(Integer namedVariables) setPresentationHint(VariablePresentationHint presentationHint) setVariablesReference(int variablesReference)
-
Method Details
-
getResult
The result of the evaluate request. -
setResult
-
getType
The optional type of the evaluate result. This attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request. -
setType
-
getPresentationHint
Properties of a evaluate result that can be used to determine how to render the result in the UI. -
setPresentationHint
-
getVariablesReference
public int getVariablesReference()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). -
setVariablesReference
-
getNamedVariables
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 value should be less than or equal to 2147483647 (2^31 - 1). -
setNamedVariables
-
getIndexedVariables
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 value should be less than or equal to 2147483647 (2^31 - 1). -
setIndexedVariables
-
getMemoryReference
Optional 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. This attribute should be returned by a debug adapter if the client has passed the value true for the 'supportsMemoryReferences' capability of the 'initialize' request. -
setMemoryReference
-
equals
-
hashCode
public int hashCode() -
create
-