visitChildren method

  1. @override
void visitChildren(
  1. AstVisitor visitor
)
override

Use the given visitor to visit all of the children of this node.

The children will be visited in lexical order.

Implementation

@override
void visitChildren(AstVisitor visitor) {
  _condition.accept(visitor);
  _thenExpression.accept(visitor);
  _elseExpression.accept(visitor);
}