(t iterator)
| 116 | } |
| 117 | |
| 118 | func (a *absoluteQuery) Select(t iterator) (n NodeNavigator) { |
| 119 | if a.count > 0 { |
| 120 | return |
| 121 | } |
| 122 | a.count++ |
| 123 | n = t.Current().Copy() |
| 124 | n.MoveToRoot() |
| 125 | return |
| 126 | } |
| 127 | |
| 128 | func (a *absoluteQuery) Evaluate(t iterator) interface{} { |
| 129 | a.count = 0 |
nothing calls this directly
no test coverage detected