public final class com.sun.org.apache.xerces.internal.util.IntStack
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.org.apache.xerces.internal.util.IntStack
  super_class: java.lang.Object
{
  private int fDepth;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int[] fData;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 50
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;

  public void push(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
        start local 1 // int value
         0: .line 55
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xerces.internal.util.IntStack.ensureCapacity:(I)V
         1: .line 56
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iload 1 /* value */
            iastore
         2: .line 57
            return
        end local 1 // int value
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/sun/org/apache/xerces/internal/util/IntStack;
            0    3     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public int peek();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 61
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iconst_1
            isub
            iaload
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;

  public int elementAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
        start local 1 // int depth
         0: .line 66
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            iload 1 /* depth */
            iaload
            ireturn
        end local 1 // int depth
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xerces/internal/util/IntStack;
            0    1     1  depth  I
    MethodParameters:
       Name  Flags
      depth  

  public int pop();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 71
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iconst_1
            isub
            dup_x1
            putfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iaload
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 76
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
         1: .line 77
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;

  public void print();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
         0: .line 83
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            bipush 40
            invokevirtual java.io.PrintStream.print:(C)V
         1: .line 84
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            invokevirtual java.io.PrintStream.print:(I)V
         2: .line 85
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc ") {"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         3: .line 86
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         4: goto 13
         5: .line 87
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            iconst_3
            if_icmpne 8
         6: .line 88
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc " ..."
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         7: .line 89
            goto 14
         8: .line 91
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            bipush 32
            invokevirtual java.io.PrintStream.print:(C)V
         9: .line 92
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            iload 1 /* i */
            iaload
            invokevirtual java.io.PrintStream.print:(I)V
        10: .line 93
            iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            iconst_1
            isub
            if_icmpge 12
        11: .line 94
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            bipush 44
            invokevirtual java.io.PrintStream.print:(C)V
        12: .line 86
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 1 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fDepth:I
            if_icmplt 5
        end local 1 // int i
        14: .line 97
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc " }"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        15: .line 98
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.println:()V
        16: .line 99
            return
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/sun/org/apache/xerces/internal/util/IntStack;
            4   14     1     i  I

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
        start local 1 // int size
         0: .line 107
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            ifnonnull 3
         1: .line 108
            aload 0 /* this */
            bipush 32
            newarray 10
            putfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
         2: .line 109
            goto 7
         3: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            arraylength
            iload 1 /* size */
            if_icmpgt 7
         4: .line 111
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            arraylength
            iconst_2
            imul
            newarray 10
            astore 2 /* newdata */
        start local 2 // int[] newdata
         5: .line 112
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            iconst_0
            aload 2 /* newdata */
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 113
            aload 0 /* this */
            aload 2 /* newdata */
            putfield com.sun.org.apache.xerces.internal.util.IntStack.fData:[I
        end local 2 // int[] newdata
         7: .line 115
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // com.sun.org.apache.xerces.internal.util.IntStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/sun/org/apache/xerces/internal/util/IntStack;
            0    8     1     size  I
            5    7     2  newdata  [I
    MethodParameters:
      Name  Flags
      size  
}
SourceFile: "IntStack.java"