setLeftChild method

void setLeftChild(
  1. DartBlockValueTreeAlgebraicNode? child
)

Implementation

void setLeftChild(DartBlockValueTreeAlgebraicNode? child) {
  leftChild = child;
  child?.parent = this;
}