()
| 12 | public PathSegment _nextSegment; |
| 13 | |
| 14 | @Override |
| 15 | public PathSegment next() { |
| 16 | try { |
| 17 | if (_nextSegment._verb == PathVerb.DONE) |
| 18 | throw new NoSuchElementException(); |
| 19 | PathSegment res = _nextSegment; |
| 20 | _nextSegment = _nNext(_ptr); |
| 21 | return res; |
| 22 | } finally { |
| 23 | ReferenceUtil.reachabilityFence(this); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | @Override |
| 28 | public boolean hasNext() { |
nothing calls this directly
no test coverage detected