public class org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.dirgra.DirectedGraph
  super_class: java.lang.Object
{
  private static int INITIAL_SIZE;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private java.util.Map<T, org.jruby.dirgra.Vertex<T>> vertices;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<TT;Lorg/jruby/dirgra/Vertex<TT;>;>;

  private org.jruby.dirgra.Edge<T>[] edges;
    descriptor: [Lorg/jruby/dirgra/Edge;
    flags: (0x0002) ACC_PRIVATE
    Signature: [Lorg/jruby/dirgra/Edge<TT;>;

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

  private java.util.ArrayList inOrderVerticeData;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE

  int vertexIDCounter;
    descriptor: I
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 11
            iconst_4
            putstatic org.jruby.dirgra.DirectedGraph.INITIAL_SIZE:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 10
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 13
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
         2: .line 14
            aload 0 /* this */
            getstatic org.jruby.dirgra.DirectedGraph.INITIAL_SIZE:I
            anewarray org.jruby.dirgra.Edge
            putfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
         3: .line 15
            aload 0 /* this */
            iconst_0
            putfield org.jruby.dirgra.DirectedGraph.edgeLength:I
         4: .line 16
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.jruby.dirgra.DirectedGraph.inOrderVerticeData:Ljava/util/ArrayList;
         5: .line 17
            aload 0 /* this */
            iconst_0
            putfield org.jruby.dirgra.DirectedGraph.vertexIDCounter:I
         6: .line 10
            return
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;

  protected org.jruby.dirgra.Edge<T>[] growEdges(org.jruby.dirgra.Edge<T>[], int);
    descriptor: ([Lorg/jruby/dirgra/Edge;I)[Lorg/jruby/dirgra/Edge;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.Edge[] array
        start local 2 // int realLength
         0: .line 20
            aload 1 /* array */
            arraylength
            ifne 1
            iconst_2
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* array */
            arraylength
            iconst_2
            imul
      StackMap locals:
      StackMap stack: int
         2: istore 3 /* newLength */
        start local 3 // int newLength
         3: .line 21
            iload 3 /* newLength */
            anewarray org.jruby.dirgra.Edge
            astore 4 /* newEdges */
        start local 4 // org.jruby.dirgra.Edge[] newEdges
         4: .line 23
            aload 1 /* array */
            iconst_0
            aload 4 /* newEdges */
            iconst_0
            iload 2 /* realLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 24
            aload 4 /* newEdges */
            areturn
        end local 4 // org.jruby.dirgra.Edge[] newEdges
        end local 3 // int newLength
        end local 2 // int realLength
        end local 1 // org.jruby.dirgra.Edge[] array
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    6     1       array  [Lorg/jruby/dirgra/Edge;
            0    6     2  realLength  I
            3    6     3   newLength  I
            4    6     4    newEdges  [Lorg/jruby/dirgra/Edge;
    Signature: ([Lorg/jruby/dirgra/Edge<TT;>;I)[Lorg/jruby/dirgra/Edge<TT;>;
    MethodParameters:
            Name  Flags
      array       
      realLength  

  protected org.jruby.dirgra.Edge<T>[] getEdges();
    descriptor: ()[Lorg/jruby/dirgra/Edge;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 28
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            areturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
    Signature: ()[Lorg/jruby/dirgra/Edge<TT;>;

  protected org.jruby.dirgra.Edge<T> addEdge(org.jruby.dirgra.Edge<T>);
    descriptor: (Lorg/jruby/dirgra/Edge;)Lorg/jruby/dirgra/Edge;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.Edge newEdge
         0: .line 32
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 34
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            iload 2 /* i */
            aaload
            aload 1 /* newEdge */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 3
            aload 1 /* newEdge */
            areturn
         3: .line 32
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            if_icmplt 2
        end local 2 // int i
         5: .line 37
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            arraylength
            if_icmplt 6
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            invokevirtual org.jruby.dirgra.DirectedGraph.growEdges:([Lorg/jruby/dirgra/Edge;I)[Lorg/jruby/dirgra/Edge;
            putfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
         6: .line 39
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            aload 0 /* this */
            dup
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            dup_x1
            iconst_1
            iadd
            putfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            aload 1 /* newEdge */
            aastore
         7: .line 40
            aload 1 /* newEdge */
            areturn
        end local 1 // org.jruby.dirgra.Edge newEdge
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    8     1  newEdge  Lorg/jruby/dirgra/Edge<TT;>;
            1    5     2        i  I
    Signature: (Lorg/jruby/dirgra/Edge<TT;>;)Lorg/jruby/dirgra/Edge<TT;>;
    MethodParameters:
         Name  Flags
      newEdge  

  public void removeEdge(org.jruby.dirgra.Edge<T>);
    descriptor: (Lorg/jruby/dirgra/Edge;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.Edge edge
         0: .line 44
            iconst_m1
            istore 2 /* splitPoint */
        start local 2 // int splitPoint
         1: .line 46
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 47
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            iload 3 /* i */
            aaload
            aload 1 /* edge */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 48
            iload 3 /* i */
            istore 2 /* splitPoint */
         5: .line 49
            goto 8
         6: .line 46
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            if_icmplt 3
        end local 3 // int i
         8: .line 53
      StackMap locals:
      StackMap stack:
            iload 2 /* splitPoint */
            iconst_m1
            if_icmpeq 16
         9: .line 54
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            iload 2 /* splitPoint */
            aaload
            astore 3 /* edgeToRemove */
        start local 3 // org.jruby.dirgra.Edge edgeToRemove
        10: .line 55
            iload 2 /* splitPoint */
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            iconst_1
            isub
            if_icmpge 12
        11: .line 56
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            iload 2 /* splitPoint */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            iload 2 /* splitPoint */
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            iconst_1
            isub
            iload 2 /* splitPoint */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 58
      StackMap locals: org.jruby.dirgra.Edge
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            iconst_1
            isub
            aconst_null
            aastore
        13: .line 59
            aload 0 /* this */
            dup
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            iconst_1
            isub
            putfield org.jruby.dirgra.DirectedGraph.edgeLength:I
        14: .line 62
            aload 1 /* edge */
            invokevirtual org.jruby.dirgra.Edge.getSource:()Lorg/jruby/dirgra/Vertex;
            aload 3 /* edgeToRemove */
            invokevirtual org.jruby.dirgra.Vertex.removeOutgoingEdge:(Lorg/jruby/dirgra/Edge;)V
        15: .line 63
            aload 1 /* edge */
            invokevirtual org.jruby.dirgra.Edge.getDestination:()Lorg/jruby/dirgra/Vertex;
            aload 3 /* edgeToRemove */
            invokevirtual org.jruby.dirgra.Vertex.removeIncomingEdge:(Lorg/jruby/dirgra/Edge;)V
        end local 3 // org.jruby.dirgra.Edge edgeToRemove
        16: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int splitPoint
        end local 1 // org.jruby.dirgra.Edge edge
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0          this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0   17     1          edge  Lorg/jruby/dirgra/Edge<TT;>;
            1   17     2    splitPoint  I
            2    8     3             i  I
           10   16     3  edgeToRemove  Lorg/jruby/dirgra/Edge<TT;>;
    Signature: (Lorg/jruby/dirgra/Edge<TT;>;)V
    MethodParameters:
      Name  Flags
      edge  

  public java.util.Collection<org.jruby.dirgra.Vertex<T>> vertices();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 68
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            areturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
    Signature: ()Ljava/util/Collection<Lorg/jruby/dirgra/Vertex<TT;>;>;

  public java.util.Collection<org.jruby.dirgra.Edge<T>> edges();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 72
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast org.jruby.dirgra.Edge[]
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            areturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
    Signature: ()Ljava/util/Collection<Lorg/jruby/dirgra/Edge<TT;>;>;

  public java.lang.Iterable<org.jruby.dirgra.Edge<T>> edgesOfType();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // java.lang.Object type
         0: .line 76
            new org.jruby.dirgra.EdgeTypeIterable
            dup
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edges:[Lorg/jruby/dirgra/Edge;
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.edgeLength:I
            aload 1 /* type */
            invokespecial org.jruby.dirgra.EdgeTypeIterable.<init>:([Lorg/jruby/dirgra/Edge;ILjava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object type
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    1     1  type  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)Ljava/lang/Iterable<Lorg/jruby/dirgra/Edge<TT;>;>;
    MethodParameters:
      Name  Flags
      type  

  public java.util.Collection<T> allData();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 80
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            areturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
    Signature: ()Ljava/util/Collection<TT;>;

  public java.util.Collection<T> getInorderData();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 87
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.inOrderVerticeData:Ljava/util/ArrayList;
            areturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
    Signature: ()Ljava/util/Collection<TT;>;

  public void addEdge(T, T, );
    descriptor: (Lorg/jruby/dirgra/ExplicitVertexID;Lorg/jruby/dirgra/ExplicitVertexID;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.ExplicitVertexID source
        start local 2 // org.jruby.dirgra.ExplicitVertexID destination
        start local 3 // java.lang.Object type
         0: .line 91
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.jruby.dirgra.DirectedGraph.findOrCreateVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            aload 2 /* destination */
            aload 3 /* type */
            invokevirtual org.jruby.dirgra.Vertex.addEdgeTo:(Lorg/jruby/dirgra/ExplicitVertexID;Ljava/lang/Object;)V
         1: .line 92
            return
        end local 3 // java.lang.Object type
        end local 2 // org.jruby.dirgra.ExplicitVertexID destination
        end local 1 // org.jruby.dirgra.ExplicitVertexID source
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    2     1       source  TT;
            0    2     2  destination  TT;
            0    2     3         type  Ljava/lang/Object;
    Signature: (TT;TT;Ljava/lang/Object;)V
    MethodParameters:
             Name  Flags
      source       
      destination  
      type         

  public void removeEdge(T, );
    descriptor: (Lorg/jruby/dirgra/ExplicitVertexID;Lorg/jruby/dirgra/ExplicitVertexID;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.ExplicitVertexID source
        start local 2 // org.jruby.dirgra.ExplicitVertexID destination
         0: .line 95
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.jruby.dirgra.DirectedGraph.findVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            ifnull 7
         1: .line 96
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.jruby.dirgra.DirectedGraph.findOrCreateVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            invokevirtual org.jruby.dirgra.Vertex.getOutgoingEdges:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 6
      StackMap locals: org.jruby.dirgra.DirectedGraph org.jruby.dirgra.ExplicitVertexID org.jruby.dirgra.ExplicitVertexID top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jruby.dirgra.Edge
            astore 3 /* edge */
        start local 3 // org.jruby.dirgra.Edge edge
         3: .line 97
            aload 3 /* edge */
            invokevirtual org.jruby.dirgra.Edge.getDestination:()Lorg/jruby/dirgra/Vertex;
            invokevirtual org.jruby.dirgra.Vertex.getData:()Lorg/jruby/dirgra/ExplicitVertexID;
            aload 2 /* destination */
            if_acmpne 6
         4: .line 98
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.jruby.dirgra.DirectedGraph.findOrCreateVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            aload 3 /* edge */
            invokevirtual org.jruby.dirgra.Edge.getDestination:()Lorg/jruby/dirgra/Vertex;
            invokevirtual org.jruby.dirgra.Vertex.removeEdgeTo:(Lorg/jruby/dirgra/Vertex;)Z
            pop
         5: .line 99
            return
        end local 3 // org.jruby.dirgra.Edge edge
         6: .line 96
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 103
      StackMap locals: org.jruby.dirgra.DirectedGraph org.jruby.dirgra.ExplicitVertexID org.jruby.dirgra.ExplicitVertexID
      StackMap stack:
            return
        end local 2 // org.jruby.dirgra.ExplicitVertexID destination
        end local 1 // org.jruby.dirgra.ExplicitVertexID source
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    8     1       source  TT;
            0    8     2  destination  TT;
            3    6     3         edge  Lorg/jruby/dirgra/Edge;
    Signature: (TT;TT;)V
    MethodParameters:
             Name  Flags
      source       
      destination  

  public org.jruby.dirgra.Vertex<T> findVertexFor(T);
    descriptor: (Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.ExplicitVertexID data
         0: .line 106
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            aload 1 /* data */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.dirgra.Vertex
            areturn
        end local 1 // org.jruby.dirgra.ExplicitVertexID data
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    1     1  data  TT;
    Signature: (TT;)Lorg/jruby/dirgra/Vertex<TT;>;
    MethodParameters:
      Name  Flags
      data  

  public org.jruby.dirgra.Vertex<T> findOrCreateVertexFor(T);
    descriptor: (Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.ExplicitVertexID data
         0: .line 113
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            aload 1 /* data */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.dirgra.Vertex
            astore 2 /* vertex */
        start local 2 // org.jruby.dirgra.Vertex vertex
         1: .line 115
            aload 2 /* vertex */
            ifnull 2
            aload 2 /* vertex */
            areturn
         2: .line 117
      StackMap locals: org.jruby.dirgra.Vertex
      StackMap stack:
            new org.jruby.dirgra.Vertex
            dup
            aload 0 /* this */
            aload 1 /* data */
            aload 0 /* this */
            dup
            getfield org.jruby.dirgra.DirectedGraph.vertexIDCounter:I
            dup_x1
            iconst_1
            iadd
            putfield org.jruby.dirgra.DirectedGraph.vertexIDCounter:I
            invokespecial org.jruby.dirgra.Vertex.<init>:(Lorg/jruby/dirgra/DirectedGraph;Lorg/jruby/dirgra/ExplicitVertexID;I)V
            astore 2 /* vertex */
         3: .line 118
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.inOrderVerticeData:Ljava/util/ArrayList;
            aload 1 /* data */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         4: .line 120
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            aload 1 /* data */
            aload 2 /* vertex */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 122
            aload 2 /* vertex */
            areturn
        end local 2 // org.jruby.dirgra.Vertex vertex
        end local 1 // org.jruby.dirgra.ExplicitVertexID data
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    6     1    data  TT;
            1    6     2  vertex  Lorg/jruby/dirgra/Vertex;
    Signature: (TT;)Lorg/jruby/dirgra/Vertex<TT;>;
    MethodParameters:
      Name  Flags
      data  

  public void removeVertexFor();
    descriptor: (Lorg/jruby/dirgra/ExplicitVertexID;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.jruby.dirgra.DirectedGraph this
        start local 1 // org.jruby.dirgra.ExplicitVertexID data
         0: .line 126
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual org.jruby.dirgra.DirectedGraph.findVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            ifnull 5
         1: .line 127
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual org.jruby.dirgra.DirectedGraph.findOrCreateVertexFor:(Lorg/jruby/dirgra/ExplicitVertexID;)Lorg/jruby/dirgra/Vertex;
            astore 2 /* vertex */
        start local 2 // org.jruby.dirgra.Vertex vertex
         2: .line 128
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            aload 1 /* data */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 129
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.inOrderVerticeData:Ljava/util/ArrayList;
            aload 1 /* data */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            pop
         4: .line 130
            aload 2 /* vertex */
            invokevirtual org.jruby.dirgra.Vertex.removeAllEdges:()V
        end local 2 // org.jruby.dirgra.Vertex vertex
         5: .line 132
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.jruby.dirgra.ExplicitVertexID data
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            0    6     1    data  TT;
            2    5     2  vertex  Lorg/jruby/dirgra/Vertex;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      data  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 138
            aload 0 /* this */
            invokevirtual org.jruby.dirgra.DirectedGraph.allData:()Ljava/util/Collection;
            invokeinterface java.util.Collection.size:()I
            ireturn
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/dirgra/DirectedGraph<TT;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.jruby.dirgra.DirectedGraph this
         0: .line 143
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         1: .line 145
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.jruby.dirgra.DirectedGraph.vertices:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 2 /* verts */
        start local 2 // java.util.ArrayList verts
         2: .line 146
            aload 2 /* verts */
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         3: .line 147
            aload 2 /* verts */
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 6
      StackMap locals: org.jruby.dirgra.DirectedGraph java.lang.StringBuilder java.util.ArrayList top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jruby.dirgra.Vertex
            astore 3 /* vertex */
        start local 3 // org.jruby.dirgra.Vertex vertex
         5: .line 148
            aload 1 /* buf */
            aload 3 /* vertex */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        end local 3 // org.jruby.dirgra.Vertex vertex
         6: .line 147
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 151
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.util.ArrayList verts
        end local 1 // java.lang.StringBuilder buf
        end local 0 // org.jruby.dirgra.DirectedGraph this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/jruby/dirgra/DirectedGraph<TT;>;
            1    8     1     buf  Ljava/lang/StringBuilder;
            2    8     2   verts  Ljava/util/ArrayList<Lorg/jruby/dirgra/Vertex<TT;>;>;
            5    6     3  vertex  Lorg/jruby/dirgra/Vertex<TT;>;
}
Signature: <T::Lorg/jruby/dirgra/ExplicitVertexID;>Ljava/lang/Object;
SourceFile: "DirectedGraph.java"