| 253 | } |
| 254 | |
| 255 | type iteratorNext struct { |
| 256 | iteratorBase |
| 257 | cursor *sql.Rows |
| 258 | // TODO(dennwc): nextPath workaround; remove when we get rid of NextPath in general |
| 259 | nextPathRes graph.Ref |
| 260 | nextPathTags map[string]graph.Ref |
| 261 | } |
| 262 | |
| 263 | func (it *iteratorNext) Next(ctx context.Context) bool { |
| 264 | if it.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected