visitSelectStatementAsSource method

  1. @override
void visitSelectStatementAsSource(
  1. SelectStatementAsSource e,
  2. void arg
)
override

Implementation

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

  if (e.as != null) {
    keyword(TokenType.as);
    identifier(e.as!);
  }
}