A Scope is a named container for variables. Optionally a scope can map to a source or a range within a source.
Fields
variablesReference:Int
The variables of this scope can be retrieved by passing the value of variablesReference to the VariablesRequest.
optionalpresentationHint:Null<ScopePresentationHint>
An optional hint for how to present this scope in the UI. If this attribute is missing, the scope is shown with a generic UI. Values: 'arguments': Scope contains method arguments. 'locals': Scope contains local variables. 'registers': Scope contains registers. Only a single 'registers' scope should be returned from a 'scopes' request. etc.
optionalnamedVariables:Null<Int>
The number of named variables in this scope. The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
optionalindexedVariables:Null<Int>
The number of indexed variables in this scope. The client can use this optional information to present the variables in a paged UI and fetch them in chunks.