replaceChild method
DartBlockValueTreeAlgebraicNode?
replaceChild(
- DartBlockValueTreeAlgebraicNode oldChild,
- DartBlockValueTreeAlgebraicNode? newChild
override
Only implemented by ArithmeticOperatorNode which features two child (left, right) properties. All other subclasses have empty implementations.
Implementation
@override
DartBlockValueTreeAlgebraicNode? replaceChild(
DartBlockValueTreeAlgebraicNode oldChild,
DartBlockValueTreeAlgebraicNode? newChild,
) {
return this;
}