followingQuery is an XPath following node query.(following::*|following-sibling::*)
| 516 | |
| 517 | // followingQuery is an XPath following node query.(following::*|following-sibling::*) |
| 518 | type followingQuery struct { |
| 519 | posit int |
| 520 | iterator func() NodeNavigator |
| 521 | |
| 522 | Input query |
| 523 | Sibling bool // The matching sibling node of current node. |
| 524 | Predicate func(NodeNavigator) bool |
| 525 | } |
| 526 | |
| 527 | func (f *followingQuery) Select(t iterator) NodeNavigator { |
| 528 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected