descendantQuery is an XPath descendant node query.(descendant::* | descendant-or-self::*)
| 424 | |
| 425 | // descendantQuery is an XPath descendant node query.(descendant::* | descendant-or-self::*) |
| 426 | type descendantQuery struct { |
| 427 | name string |
| 428 | iterator func() NodeNavigator |
| 429 | posit int |
| 430 | level int |
| 431 | |
| 432 | Self bool |
| 433 | Input query |
| 434 | Predicate func(NodeNavigator) bool |
| 435 | } |
| 436 | |
| 437 | func (d *descendantQuery) Select(t iterator) NodeNavigator { |
| 438 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected