childQuery is an XPath child node query.(child::*)
| 290 | |
| 291 | // childQuery is an XPath child node query.(child::*) |
| 292 | type childQuery struct { |
| 293 | name string |
| 294 | posit int |
| 295 | iterator func() NodeNavigator |
| 296 | |
| 297 | Input query |
| 298 | Predicate func(NodeNavigator) bool |
| 299 | } |
| 300 | |
| 301 | func (c *childQuery) Select(t iterator) NodeNavigator { |
| 302 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected