NodeReference constructor

NodeReference(
  1. CompileViewStorage? _storage,
  2. OutputType? _type,
  3. int nodeIndex
)

Create a NodeReference with a defined o.OutputType.

In practice, this is used for ElementRef, and nothing else.

Implementation

NodeReference(
  this._storage,
  this._type,
  int nodeIndex,
)   : _name = '_el_$nodeIndex',
      _initialValue = null;