parentQuery is an XPath parent node query.(parent::*)
| 695 | |
| 696 | // parentQuery is an XPath parent node query.(parent::*) |
| 697 | type parentQuery struct { |
| 698 | Input query |
| 699 | Predicate func(NodeNavigator) bool |
| 700 | } |
| 701 | |
| 702 | func (p *parentQuery) Select(t iterator) NodeNavigator { |
| 703 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected