visitSelectStatementAsSource method
Implementation
@override
void visitSelectStatementAsSource(SelectStatementAsSource e, void arg) {
symbol('(', spaceBefore: true);
visit(e.statement, arg);
symbol(')', spaceAfter: true);
visitNullable(e.as, arg);
}