< prev index next >

src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/InsnList.java

Print this page

        

*** 203,212 **** --- 203,215 ---- } /** * Returns an iterator over the instructions in this list. * + * @param index + * index of instruction for the iterator to start at + * * @return an iterator over the instructions in this list. */ @SuppressWarnings("unchecked") public ListIterator<AbstractInsnNode> iterator(int index) { return new InsnListIterator(index);
< prev index next >