(final GNode node, final Test test)
| 17 | /** Ancestor-or-self axis. */ |
| 18 | ANCESTOR_OR_SELF("ancestor-or-self", false) { |
| 19 | @Override |
| 20 | BasicNodeIter iter(final GNode node, final Test test) { |
| 21 | return node.ancestorIter(true); |
| 22 | } |
| 23 | }, |
| 24 | |
| 25 | /** Ancestor axis. */ |
nothing calls this directly
no test coverage detected