CompoundAssignmentExpression class abstract

A potentially compound assignment.

A compound assignment is any node in which a single expression is used to specify both where to access a value to be operated on (the "read") and to specify where to store the result of the operation (the "write"). This happens in an AssignmentExpression when the assignment operator is a compound assignment operator, and in a PrefixExpression or PostfixExpression when the operator is an increment operator.

Clients may not extend, implement or mix-in this class.

Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
readElement → Element?
The element that is used to read the value.
no setter
readType → DartType?
The type of the value read with the readElement.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
writeElement → Element?
The element that is used to write the result.
no setter
writeType → DartType?
The types of assigned values must be subtypes of this type.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited