VariableRead class
A reference to a local variable name.
In practice, this is used as optimization to change detect an interpolated
expression (such as {{foo}}) by checking the variable that has already
been assigned (e.g. var currValN = context.foo) has changed, instead of
checking if interpolate(currValN) has changed.
NOTE: One diference between this and PropertyRead, is name is not
evaluated in context of the ImplicitReciver.
VariableRead('foo') // foo
Constructors
- VariableRead(String name)
Properties
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 visitorand optionally acontext, produce a return valueR.override
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited