ancestors property

  1. @override
Iterable<XmlNode> get ancestors
inherited

Return a lazy Iterable of the ancestors of this node (parent, grandparent, ...) in reverse document order.

Implementation

@override
Iterable<XmlNode> get ancestors => XmlAncestorsIterable(this);