attributeQuery is an XPath attribute node query.(@*)
| 231 | |
| 232 | // attributeQuery is an XPath attribute node query.(@*) |
| 233 | type attributeQuery struct { |
| 234 | name string |
| 235 | iterator func() NodeNavigator |
| 236 | |
| 237 | Input query |
| 238 | Predicate func(NodeNavigator) bool |
| 239 | } |
| 240 | |
| 241 | func (a *attributeQuery) Select(t iterator) NodeNavigator { |
| 242 | for { |
nothing calls this directly
no outgoing calls
no test coverage detected