selfAndDescendants method

Iterable<TreeNodeInfo> selfAndDescendants()

Lazily-computes the self-and-descendant nodes of this node, in depth-first order

Implementation

Iterable<TreeNodeInfo> selfAndDescendants() sync* {
  yield this;
  yield* descendants();
}