class org.graalvm.compiler.graph.TypedGraphNodeIterator<T extends org.graalvm.compiler.graph.IterableNodeType> implements java.util.Iterator<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.graalvm.compiler.graph.TypedGraphNodeIterator
  super_class: java.lang.Object
{
  private final org.graalvm.compiler.graph.Graph graph;
    descriptor: Lorg/graalvm/compiler/graph/Graph;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] ids;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.graph.Node[] current;
    descriptor: [Lorg/graalvm/compiler/graph/Node;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int currentIdIndex;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean needsForward;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  void <init>(org.graalvm.compiler.graph.NodeClass<?>, org.graalvm.compiler.graph.Graph);
    descriptor: (Lorg/graalvm/compiler/graph/NodeClass;Lorg/graalvm/compiler/graph/Graph;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
        start local 1 // org.graalvm.compiler.graph.NodeClass clazz
        start local 2 // org.graalvm.compiler.graph.Graph graph
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 2 /* graph */
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.graph:Lorg/graalvm/compiler/graph/Graph;
         2: .line 41
            aload 0 /* this */
            aload 1 /* clazz */
            invokevirtual org.graalvm.compiler.graph.NodeClass.iterableIds:()[I
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.ids:[I
         3: .line 42
            aload 0 /* this */
            iconst_0
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
         4: .line 43
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.ids:[I
            arraylength
            anewarray org.graalvm.compiler.graph.Node
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.current:[Lorg/graalvm/compiler/graph/Node;
         5: .line 44
            aload 0 /* this */
            iconst_1
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
         6: .line 45
            return
        end local 2 // org.graalvm.compiler.graph.Graph graph
        end local 1 // org.graalvm.compiler.graph.NodeClass clazz
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;
            0    7     1  clazz  Lorg/graalvm/compiler/graph/NodeClass<*>;
            0    7     2  graph  Lorg/graalvm/compiler/graph/Graph;
    Signature: (Lorg/graalvm/compiler/graph/NodeClass<*>;Lorg/graalvm/compiler/graph/Graph;)V
    MethodParameters:
       Name  Flags
      clazz  
      graph  

  private org.graalvm.compiler.graph.Node findNext();
    descriptor: ()Lorg/graalvm/compiler/graph/Node;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 48
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
            ifeq 3
         1: .line 49
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.forward:()V
         2: .line 50
            goto 10
         3: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.current:()Lorg/graalvm/compiler/graph/Node;
            astore 1 /* c */
        start local 1 // org.graalvm.compiler.graph.Node c
         4: .line 52
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.graph:Lorg/graalvm/compiler/graph/Graph;
            aload 1 /* c */
            invokevirtual org.graalvm.compiler.graph.Graph.getIterableNodeNext:(Lorg/graalvm/compiler/graph/Node;)Lorg/graalvm/compiler/graph/Node;
            astore 2 /* afterDeleted */
        start local 2 // org.graalvm.compiler.graph.Node afterDeleted
         5: .line 53
            aload 2 /* afterDeleted */
            ifnonnull 8
         6: .line 54
            aload 0 /* this */
            iconst_1
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
         7: .line 55
            goto 10
      StackMap locals: org.graalvm.compiler.graph.Node org.graalvm.compiler.graph.Node
      StackMap stack:
         8: aload 1 /* c */
            aload 2 /* afterDeleted */
            if_acmpeq 10
         9: .line 56
            aload 0 /* this */
            aload 2 /* afterDeleted */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.setCurrent:(Lorg/graalvm/compiler/graph/Node;)V
        end local 2 // org.graalvm.compiler.graph.Node afterDeleted
        end local 1 // org.graalvm.compiler.graph.Node c
        10: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
            ifeq 12
        11: .line 60
            aconst_null
            areturn
        12: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.current:()Lorg/graalvm/compiler/graph/Node;
            areturn
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;
            4   10     1             c  Lorg/graalvm/compiler/graph/Node;
            5   10     2  afterDeleted  Lorg/graalvm/compiler/graph/Node;

  private void forward();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 66
            aload 0 /* this */
            iconst_0
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
         1: .line 67
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            istore 1 /* startIdx */
        start local 1 // int startIdx
         2: .line 70
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.current:()Lorg/graalvm/compiler/graph/Node;
            ifnonnull 5
         3: .line 71
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.graph:Lorg/graalvm/compiler/graph/Graph;
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.ids:[I
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            iaload
            invokevirtual org.graalvm.compiler.graph.Graph.getIterableNodeStart:(I)Lorg/graalvm/compiler/graph/Node;
            astore 2 /* next */
        start local 2 // org.graalvm.compiler.graph.Node next
         4: .line 72
            goto 6
        end local 2 // org.graalvm.compiler.graph.Node next
         5: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.graph:Lorg/graalvm/compiler/graph/Graph;
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.current:()Lorg/graalvm/compiler/graph/Node;
            getfield org.graalvm.compiler.graph.Node.typeCacheNext:Lorg/graalvm/compiler/graph/Node;
            invokevirtual org.graalvm.compiler.graph.Graph.getIterableNodeNext:(Lorg/graalvm/compiler/graph/Node;)Lorg/graalvm/compiler/graph/Node;
            astore 2 /* next */
        start local 2 // org.graalvm.compiler.graph.Node next
         6: .line 75
      StackMap locals: org.graalvm.compiler.graph.Node
      StackMap stack:
            aload 2 /* next */
            ifnonnull 13
         7: .line 76
            aload 0 /* this */
            dup
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            iconst_1
            iadd
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
         8: .line 77
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.ids:[I
            arraylength
            if_icmplt 10
         9: .line 78
            aload 0 /* this */
            iconst_0
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
        10: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            iload 1 /* startIdx */
            if_icmpne 2
        11: .line 81
            aload 0 /* this */
            iconst_1
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
        12: .line 82
            return
        13: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* next */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.setCurrent:(Lorg/graalvm/compiler/graph/Node;)V
        end local 2 // org.graalvm.compiler.graph.Node next
        14: .line 89
            return
        end local 1 // int startIdx
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;
            2   15     1  startIdx  I
            4    5     2      next  Lorg/graalvm/compiler/graph/Node;
            6   14     2      next  Lorg/graalvm/compiler/graph/Node;

  private org.graalvm.compiler.graph.Node current();
    descriptor: ()Lorg/graalvm/compiler/graph/Node;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 92
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.current:[Lorg/graalvm/compiler/graph/Node;
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            aaload
            areturn
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;

  private void setCurrent(org.graalvm.compiler.graph.Node);
    descriptor: (Lorg/graalvm/compiler/graph/Node;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
        start local 1 // org.graalvm.compiler.graph.Node n
         0: .line 96
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.current:[Lorg/graalvm/compiler/graph/Node;
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.TypedGraphNodeIterator.currentIdIndex:I
            aload 1 /* n */
            aastore
         1: .line 97
            return
        end local 1 // org.graalvm.compiler.graph.Node n
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;
            0    2     1     n  Lorg/graalvm/compiler/graph/Node;
    MethodParameters:
      Name  Flags
      n     

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 101
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.findNext:()Lorg/graalvm/compiler/graph/Node;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;

  public T next();
    descriptor: ()Lorg/graalvm/compiler/graph/IterableNodeType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 107
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.graph.TypedGraphNodeIterator.findNext:()Lorg/graalvm/compiler/graph/Node;
            astore 1 /* result */
        start local 1 // org.graalvm.compiler.graph.Node result
         1: .line 108
            aload 1 /* result */
            ifnonnull 3
         2: .line 109
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         3: .line 111
      StackMap locals: org.graalvm.compiler.graph.Node
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.graalvm.compiler.graph.TypedGraphNodeIterator.needsForward:Z
         4: .line 112
            aload 1 /* result */
            checkcast org.graalvm.compiler.graph.IterableNodeType
            areturn
        end local 1 // org.graalvm.compiler.graph.Node result
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<TT;>;
            1    5     1  result  Lorg/graalvm/compiler/graph/Node;
    Signature: ()TT;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
         0: .line 117
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.graalvm.compiler.graph.TypedGraphNodeIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/graph/TypedGraphNodeIterator<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 org.graalvm.compiler.graph.TypedGraphNodeIterator.next:()Lorg/graalvm/compiler/graph/IterableNodeType;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T::Lorg/graalvm/compiler/graph/IterableNodeType;>Ljava/lang/Object;Ljava/util/Iterator<TT;>;
SourceFile: "TypedGraphNodeIterator.java"