MCPcopy Create free account
hub / github.com/mozilla/rhino / next

Method next

rhino/src/main/java/org/mozilla/javascript/NativeArray.java:2360–2367  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2358 }
2359
2360 @Override
2361 public Object next() {
2362 checkModCount(modCount);
2363 if (cursor == len) {
2364 throw new NoSuchElementException();
2365 }
2366 return get(cursor++);
2367 }
2368
2369 @Override
2370 public boolean hasPrevious() {

Callers

nothing calls this directly

Calls 2

checkModCountMethod · 0.95
getMethod · 0.95

Tested by

no test coverage detected