childNodes property

  1. @override
Iterable<AstNode> childNodes
override

All direct children of this node.

Implementation

@override
Iterable<AstNode> get childNodes {
  return [
    operator,
    query,
    if (constraint is OnConstraint) (constraint as OnConstraint).expression
  ];
}