transformChildren<A> method

  1. @override
void transformChildren<A>(
  1. Transformer<A> transformer,
  2. A arg
)
override

Transforms children of this node by invoking transformer with the argument arg.

Implementation

@override
void transformChildren<A>(Transformer<A> transformer, A arg) {
  withClause = transformer.transformNullableChild(withClause, this, arg);
  columns = transformer.transformChildren(columns, this, arg);
  from = transformer.transformNullableChild(from, this, arg);
  where = transformer.transformNullableChild(where, this, arg);
  groupBy = transformer.transformNullableChild(groupBy, this, arg);
//    transformer.transformChildren(windowDeclarations, this, arg);
  limit = transformer.transformNullableChild(limit, this, arg);
  orderBy = transformer.transformNullableChild(orderBy, this, arg);
}