childNodes property

  1. @override
Iterable<AstNode> childNodes
override

All direct children of this node.

Implementation

@override
Iterable<AstNode> get childNodes => [
      if (withClause != null) withClause!,
      table,
      ...set,
      if (from != null) from!,
      if (where != null) where!,
      if (returning != null) returning!,
    ];