public class org.antlr.runtime.misc.IntArray
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.antlr.runtime.misc.IntArray
  super_class: java.lang.Object
{
  public static final int INITIAL_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  public int[] data;
    descriptor: [I
    flags: (0x0001) ACC_PUBLIC

  protected int p;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.antlr.runtime.misc.IntArray this
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            iconst_m1
            putfield org.antlr.runtime.misc.IntArray.p:I
         2: .line 44
            return
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/antlr/runtime/misc/IntArray;

  public void add(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.antlr.runtime.misc.IntArray this
        start local 1 // int v
         0: .line 50
            aload 0 /* this */
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.p:I
            iconst_1
            iadd
            invokevirtual org.antlr.runtime.misc.IntArray.ensureCapacity:(I)V
         1: .line 51
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            aload 0 /* this */
            dup
            getfield org.antlr.runtime.misc.IntArray.p:I
            iconst_1
            iadd
            dup_x1
            putfield org.antlr.runtime.misc.IntArray.p:I
            iload 1 /* v */
            iastore
         2: .line 52
            return
        end local 1 // int v
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/antlr/runtime/misc/IntArray;
            0    3     1     v  I
    MethodParameters:
      Name  Flags
      v     

  public void push(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.antlr.runtime.misc.IntArray this
        start local 1 // int v
         0: .line 55
            aload 0 /* this */
            iload 1 /* v */
            invokevirtual org.antlr.runtime.misc.IntArray.add:(I)V
         1: .line 56
            return
        end local 1 // int v
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/antlr/runtime/misc/IntArray;
            0    2     1     v  I
    MethodParameters:
      Name  Flags
      v     

  public int pop();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.antlr.runtime.misc.IntArray this
         0: .line 59
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.p:I
            iaload
            istore 1 /* v */
        start local 1 // int v
         1: .line 60
            aload 0 /* this */
            dup
            getfield org.antlr.runtime.misc.IntArray.p:I
            iconst_1
            isub
            putfield org.antlr.runtime.misc.IntArray.p:I
         2: .line 61
            iload 1 /* v */
            ireturn
        end local 1 // int v
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/antlr/runtime/misc/IntArray;
            1    3     1     v  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.antlr.runtime.misc.IntArray this
         0: .line 66
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.p:I
            ireturn
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/antlr/runtime/misc/IntArray;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.antlr.runtime.misc.IntArray this
         0: .line 70
            aload 0 /* this */
            iconst_m1
            putfield org.antlr.runtime.misc.IntArray.p:I
         1: .line 71
            return
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/antlr/runtime/misc/IntArray;

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.antlr.runtime.misc.IntArray this
        start local 1 // int index
         0: .line 74
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            ifnonnull 3
         1: .line 75
            aload 0 /* this */
            bipush 10
            newarray 10
            putfield org.antlr.runtime.misc.IntArray.data:[I
         2: .line 76
            goto 10
         3: .line 77
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            arraylength
            if_icmplt 10
         4: .line 78
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            arraylength
            iconst_2
            imul
            istore 2 /* newSize */
        start local 2 // int newSize
         5: .line 79
            iload 1 /* index */
            iload 2 /* newSize */
            if_icmple 7
         6: .line 80
            iload 1 /* index */
            iconst_1
            iadd
            istore 2 /* newSize */
         7: .line 82
      StackMap locals: int
      StackMap stack:
            iload 2 /* newSize */
            newarray 10
            astore 3 /* newData */
        start local 3 // int[] newData
         8: .line 83
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            iconst_0
            aload 3 /* newData */
            iconst_0
            aload 0 /* this */
            getfield org.antlr.runtime.misc.IntArray.data:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 84
            aload 0 /* this */
            aload 3 /* newData */
            putfield org.antlr.runtime.misc.IntArray.data:[I
        end local 3 // int[] newData
        end local 2 // int newSize
        10: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // org.antlr.runtime.misc.IntArray this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/antlr/runtime/misc/IntArray;
            0   11     1    index  I
            5   10     2  newSize  I
            8   10     3  newData  [I
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "IntArray.java"