| 194 | unsigned depth; |
| 195 | |
| 196 | iteratorImpl(NodeRef root) |
| 197 | :current {root, -1} |
| 198 | ,depth {0} |
| 199 | { } |
| 200 | |
| 201 | pair<slice,Value> next() { |
| 202 | while (unsigned(++current.index) >= current.parent.childCount()) { |
nothing calls this directly
no outgoing calls
no test coverage detected