class com.oracle.js.parser.ParserContext$NodeIterator<T extends com.oracle.js.parser.ParserContextNode> implements java.util.Iterator<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.js.parser.ParserContext$NodeIterator
  super_class: java.lang.Object
{
  private int index;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private T next;
    descriptor: Lcom/oracle/js/parser/ParserContextNode;
    flags: (0x0002) ACC_PRIVATE
    Signature: TT;

  private final java.lang.Class<T> clazz;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<TT;>;

  private com.oracle.js.parser.ParserContextNode until;
    descriptor: Lcom/oracle/js/parser/ParserContextNode;
    flags: (0x0002) ACC_PRIVATE

  final com.oracle.js.parser.ParserContext this$0;
    descriptor: Lcom/oracle/js/parser/ParserContext;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(java.lang.Class<T>);
    descriptor: (Lcom/oracle/js/parser/ParserContext;Ljava/lang/Class;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
        start local 2 // java.lang.Class clazz
         0: .line 344
            aload 0 /* this */
            aload 1
            aload 2 /* clazz */
            aconst_null
            invokespecial com.oracle.js.parser.ParserContext$NodeIterator.<init>:(Lcom/oracle/js/parser/ParserContext;Ljava/lang/Class;Lcom/oracle/js/parser/ParserContextNode;)V
         1: .line 345
            return
        end local 2 // java.lang.Class clazz
        end local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/js/parser/ParserContext$NodeIterator<TT;>;
            0    2     2  clazz  Ljava/lang/Class<TT;>;
    Signature: (Ljava/lang/Class<TT;>;)V
    MethodParameters:
        Name  Flags
      this$0  final
      clazz   final

  void <init>(java.lang.Class<T>, com.oracle.js.parser.ParserContextNode);
    descriptor: (Lcom/oracle/js/parser/ParserContext;Ljava/lang/Class;Lcom/oracle/js/parser/ParserContextNode;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
        start local 2 // java.lang.Class clazz
        start local 3 // com.oracle.js.parser.ParserContextNode until
         0: .line 347
            aload 0 /* this */
            aload 1
            putfield com.oracle.js.parser.ParserContext$NodeIterator.this$0:Lcom/oracle/js/parser/ParserContext;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 348
            aload 0 /* this */
            aload 1
            getfield com.oracle.js.parser.ParserContext.sp:I
            iconst_1
            isub
            putfield com.oracle.js.parser.ParserContext$NodeIterator.index:I
         2: .line 349
            aload 0 /* this */
            aload 2 /* clazz */
            putfield com.oracle.js.parser.ParserContext$NodeIterator.clazz:Ljava/lang/Class;
         3: .line 350
            aload 0 /* this */
            aload 3 /* until */
            putfield com.oracle.js.parser.ParserContext$NodeIterator.until:Lcom/oracle/js/parser/ParserContextNode;
         4: .line 351
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.oracle.js.parser.ParserContext$NodeIterator.findNext:()Lcom/oracle/js/parser/ParserContextNode;
            putfield com.oracle.js.parser.ParserContext$NodeIterator.next:Lcom/oracle/js/parser/ParserContextNode;
         5: .line 352
            return
        end local 3 // com.oracle.js.parser.ParserContextNode until
        end local 2 // java.lang.Class clazz
        end local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/oracle/js/parser/ParserContext$NodeIterator<TT;>;
            0    6     2  clazz  Ljava/lang/Class<TT;>;
            0    6     3  until  Lcom/oracle/js/parser/ParserContextNode;
    Signature: (Ljava/lang/Class<TT;>;Lcom/oracle/js/parser/ParserContextNode;)V
    MethodParameters:
        Name  Flags
      this$0  final
      clazz   final
      until   final

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
         0: .line 356
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.next:Lcom/oracle/js/parser/ParserContextNode;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/ParserContext$NodeIterator<TT;>;

  public T next();
    descriptor: ()Lcom/oracle/js/parser/ParserContextNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
         0: .line 361
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.next:Lcom/oracle/js/parser/ParserContextNode;
            ifnonnull 2
         1: .line 362
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.next:Lcom/oracle/js/parser/ParserContextNode;
            astore 1 /* lnext */
        start local 1 // com.oracle.js.parser.ParserContextNode lnext
         3: .line 365
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.oracle.js.parser.ParserContext$NodeIterator.findNext:()Lcom/oracle/js/parser/ParserContextNode;
            putfield com.oracle.js.parser.ParserContext$NodeIterator.next:Lcom/oracle/js/parser/ParserContextNode;
         4: .line 366
            aload 1 /* lnext */
            areturn
        end local 1 // com.oracle.js.parser.ParserContextNode lnext
        end local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/js/parser/ParserContext$NodeIterator<TT;>;
            3    5     1  lnext  TT;
    Signature: ()TT;

  private T findNext();
    descriptor: ()Lcom/oracle/js/parser/ParserContextNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
         0: .line 371
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.index:I
            istore 1 /* i */
        start local 1 // int i
         1: goto 9
         2: .line 372
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.this$0:Lcom/oracle/js/parser/ParserContext;
            getfield com.oracle.js.parser.ParserContext.stack:[Lcom/oracle/js/parser/ParserContextNode;
            iload 1 /* i */
            aaload
            astore 2 /* node */
        start local 2 // java.lang.Object node
         3: .line 373
            aload 2 /* node */
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.until:Lcom/oracle/js/parser/ParserContextNode;
            if_acmpne 5
         4: .line 374
            aconst_null
            areturn
         5: .line 376
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContext$NodeIterator.clazz:Ljava/lang/Class;
            aload 2 /* node */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 8
         6: .line 377
            aload 0 /* this */
            iload 1 /* i */
            iconst_1
            isub
            putfield com.oracle.js.parser.ParserContext$NodeIterator.index:I
         7: .line 378
            aload 2 /* node */
            checkcast com.oracle.js.parser.ParserContextNode
            areturn
        end local 2 // java.lang.Object node
         8: .line 371
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
         9: iload 1 /* i */
            ifge 2
        end local 1 // int i
        10: .line 381
            aconst_null
            areturn
        end local 0 // com.oracle.js.parser.ParserContext$NodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/oracle/js/parser/ParserContext$NodeIterator<TT;>;
            1   10     1     i  I
            3    8     2  node  Ljava/lang/Object;
    Signature: ()TT;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.oracle.js.parser.ParserContext$NodeIterator.next:()Lcom/oracle/js/parser/ParserContextNode;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T::Lcom/oracle/js/parser/ParserContextNode;>Ljava/lang/Object;Ljava/util/Iterator<TT;>;
SourceFile: "ParserContext.java"
NestHost: com.oracle.js.parser.ParserContext
InnerClasses:
  private NodeIterator = com.oracle.js.parser.ParserContext$NodeIterator of com.oracle.js.parser.ParserContext