childToParentIterable property

Iterable<T> get childToParentIterable

Implementation

Iterable<T> get childToParentIterable sync* {
  var bits = this;
  while (bits != null) {
    yield bits;
    bits = bits.parent;
  }
}