precedingQuery is an XPath preceding node query.(preceding::*)
| 606 | |
| 607 | // precedingQuery is an XPath preceding node query.(preceding::*) |
| 608 | type precedingQuery struct { |
| 609 | iterator func() NodeNavigator |
| 610 | posit int |
| 611 | Input query |
| 612 | Sibling bool // The matching sibling node of current node. |
| 613 | Predicate func(NodeNavigator) bool |
| 614 | } |
| 615 | |
| 616 | func (p *precedingQuery) Select(t iterator) NodeNavigator { |
| 617 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected