KeyedWrite class

Similar to PropertyWrite using bracket operator []= to refer to key.

// a['b'] = 'c'
KeyedWrite(
  VariableRead('a'),
  LiteralPrimitive('b'),
  LiteralPrimitive('c'),
)
Inheritance

Constructors

KeyedWrite(AST receiver, AST key, AST value)

Properties

hashCode int
The hash code for this object.
no setterinherited
key AST
Expression passed to the []= operator.
final
receiver AST
Context to write key to.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value AST
Value to write.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
visit<R, C, CO extends C>(AstVisitor<R, C?> visitor, [CO? context]) → R
Given a visitor and optionally a context, produce a return value R.
override

Operators

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