selfAndAncestors method
Lazily-computes the self-and-ancestor nodes of this node.
Implementation
Iterable<TreeNodeInfo> selfAndAncestors() sync* {
yield this;
yield* ancestors();
}
Lazily-computes the self-and-ancestor nodes of this node.
Iterable<TreeNodeInfo> selfAndAncestors() sync* {
yield this;
yield* ancestors();
}