NodeReference.textNode constructor
NodeReference.textNode(
- CompileViewStorage? _storage,
- int nodeIndex, {
- Expression? initialValue,
Create a NodeReference for a Text
node.
Implementation
NodeReference.textNode(
this._storage,
int nodeIndex, {
o.Expression? initialValue,
}) : _type = o.importType(Identifiers.textNode),
_name = '_text_$nodeIndex',
_initialValue = initialValue;