NodeReference.textNode constructor

NodeReference.textNode(
  1. CompileViewStorage? _storage,
  2. int nodeIndex, {
  3. Expression? initialValue,
})

Create a NodeReference for a Text node.

Implementation

NodeReference.textNode(this._storage, int nodeIndex, {this._initialValue})
  : _type = o.importType(Identifiers.textNode),
    _name = '_text_$nodeIndex';