Package ortus.boxlang.debugger.request
Class VariablesRequest.VariablesRequestArguments
java.lang.Object
ortus.boxlang.debugger.request.VariablesRequest.VariablesRequestArguments
- Enclosing class:
VariablesRequest
-
Field Summary
FieldsModifier and TypeFieldDescriptionintThe number of variables to return.Filter to limit the child variables to either named or indexed.Specifies details on how to format the Variable values.intThe index of the first variable to return; if omitted children start at 0.intThe variable for which to retrieve its children. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
variablesReference
public int variablesReferenceThe variable for which to retrieve its children. The `variablesReference` must have been obtained in the current suspended state. See 'Lifetime of Object References' in the Overview section for details. -
filter
Filter to limit the child variables to either named or indexed. If omitted, both types are fetched. Values: 'indexed', 'named' -
start
public int startThe index of the first variable to return; if omitted children start at 0. The attribute is only honored by a debug adapter if the corresponding capability `supportsVariablePaging` is true. -
count
public int countThe number of variables to return. If count is missing or 0, all variables are returned. The attribute is only honored by a debug adapter if the corresponding capability `supportsVariablePaging` is true. -
format
Specifies details on how to format the Variable values. The attribute is only honored by a debug adapter if the corresponding capability `supportsValueFormattingOptions` is true.
-
-
Constructor Details
-
VariablesRequestArguments
public VariablesRequestArguments()
-