DartBlockValueTreeAlgebraicOperatorNode constructor
DartBlockValueTreeAlgebraicOperatorNode(
- DartBlockValueTreeAlgebraicNode? leftChild,
- DartBlockAlgebraicOperator? operator,
- DartBlockValueTreeAlgebraicNode? rightChild,
- DartBlockValueTreeAlgebraicNodeType numericNodeType,
- DartBlockValueTreeNodeType nodeType,
- String nodeKey,
Implementation
DartBlockValueTreeAlgebraicOperatorNode(
this.leftChild,
this.operator,
this.rightChild,
super.numericNodeType,
super.nodeType,
super.nodeKey,
) {
leftChild?.parent = this;
rightChild?.parent = this;
}