AttributeNode constructor

AttributeNode(
  1. dynamic attributeName,
  2. dynamic nodeType
)

Implementation

AttributeNode(attributeName, nodeType) : super(nodeType) {
  generateLength = 1;
  this._attributeName = attributeName;
}