Class VariablesRequest.VariablesRequestArguments

java.lang.Object
ortus.boxlang.debugger.request.VariablesRequest.VariablesRequestArguments
Enclosing class:
VariablesRequest

public static class VariablesRequest.VariablesRequestArguments extends Object
  • Field Details

    • variablesReference

      public int variablesReference
      The 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

      public String filter
      Filter to limit the child variables to either named or indexed. If omitted, both types are fetched. Values: 'indexed', 'named'
    • start

      public int start
      The 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 count
      The 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

      public String 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()