DataBreakpointInfoArguments class
Arguments for dataBreakpointInfo
request.
- Inheritance
-
- Object
- RequestArguments
- DataBreakpointInfoArguments
Constructors
Properties
- asAddress → bool?
-
If
true
, thename
is a memory address and the debugger should interpret it as a decimal value, or hex value if it is prefixed with0x
.final - bytes → int?
-
If specified, a debug adapter should return information for the range of
memory extending
bytes
number of bytes from the address or variable specified byname
. Breakpoints set using the resulting data ID should pause on data access anywhere within that range.final - frameId → int?
-
When
name
is an expression, evaluate it in the scope of this stack frame. If not specified, the expression is evaluated in the global scope. WhenvariablesReference
is specified, this property has no effect.final - hashCode → int
-
The hash code for this object.
no setterinherited
- mode → String?
-
The mode of the desired breakpoint. If defined, this must be one of the
breakpointModes
the debug adapter advertised in itsCapabilities
.final - name → String
-
The name of the variable's child to obtain data breakpoint information
for.
If
variablesReference
isn't specified, this can be an expression, or an address ifasAddress
is also true.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- variablesReference → int?
-
Reference to the variable container if the data breakpoint is requested
for a child of the container. The
variablesReference
must have been obtained in the current suspended state. See 'Lifetime of Object References' in the Overview section for details.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object?> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited