backspace method
Receive a delete (backspace) request, which should delete the right-most component (digit of a constant, variable, operator).
Implementation
@override
DartBlockValueTreeAlgebraicNode? backspace() {
return parent?.replaceChild(this, null);
}