https://github.com/antchfx/xpath/issues/43
(q query)
| 642 | |
| 643 | // https://github.com/antchfx/xpath/issues/43 |
| 644 | func functionArgs(q query) query { |
| 645 | if _, ok := q.(*functionQuery); ok { |
| 646 | return q |
| 647 | } |
| 648 | return q.Clone() |
| 649 | } |
| 650 | |
| 651 | func reverseFunc(q query, t iterator) func() NodeNavigator { |
| 652 | var list []NodeNavigator |
no test coverage detected
searching dependent graphs…