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

Method next

rhino/src/main/java/org/mozilla/javascript/Node.java:346–356  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

344 }
345
346 @Override
347 public Node next() {
348 if (cursor == null) {
349 throw new NoSuchElementException();
350 }
351 removed = false;
352 prev2 = prev;
353 prev = cursor;
354 cursor = cursor.next;
355 return prev;
356 }
357
358 @Override
359 public void remove() {

Callers 15

verifyIndicesAndKeysMethod · 0.45
compareIteratorsMethod · 0.45
compareIteratorsMethod · 0.45
iteratorModMethod · 0.45
joinMethod · 0.45
nextValueMethod · 0.45
equalListsMethod · 0.45
equalMapsMethod · 0.45

Calls

no outgoing calls