accept method
Accepts an ExpressionVisitor and visits all nodes of this expression tree in Postfix order.
Implementation
@override
void accept(ExpressionVisitor visitor) {
super.accept(visitor);
visitor.visitAbs(this);
}
Accepts an ExpressionVisitor and visits all nodes of this expression tree in Postfix order.
@override
void accept(ExpressionVisitor visitor) {
super.accept(visitor);
visitor.visitAbs(this);
}