visitCompoundSelectStatement method

  1. @override
void visitCompoundSelectStatement(
  1. CompoundSelectStatement e,
  2. void arg
)
override

Implementation

@override
void visitCompoundSelectStatement(CompoundSelectStatement e, void arg) {
  visitNullable(e.withClause, arg);
  visit(e.base, arg);
  visitList(e.additional, arg);
}