childNodes property

  1. @override
Iterable<AstNode> childNodes
override

All direct children of this node.

Implementation

@override
Iterable<AstNode> get childNodes {
  return [
    if (withClause != null) withClause!,
    ...columns,
    if (from != null) from!,
    if (where != null) where!,
    if (groupBy != null) groupBy!,
    for (var windowDecl in windowDeclarations) windowDecl.definition,
    if (limit != null) limit!,
    if (orderBy != null) orderBy!,
  ];
}