final class sun.text.CharArrayCodePointIterator extends sun.text.CodePointIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.text.CharArrayCodePointIterator
  super_class: sun.text.CodePointIterator
{
  private char[] text;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public void <init>(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.text.CharArrayCodePointIterator this
        start local 1 // char[] text
         0: .line 74
            aload 0 /* this */
            invokespecial sun.text.CodePointIterator.<init>:()V
         1: .line 75
            aload 0 /* this */
            aload 1 /* text */
            putfield sun.text.CharArrayCodePointIterator.text:[C
         2: .line 76
            aload 0 /* this */
            aload 1 /* text */
            arraylength
            putfield sun.text.CharArrayCodePointIterator.limit:I
         3: .line 77
            return
        end local 1 // char[] text
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/text/CharArrayCodePointIterator;
            0    4     1  text  [C
    MethodParameters:
      Name  Flags
      text  

  public void <init>(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.text.CharArrayCodePointIterator this
        start local 1 // char[] text
        start local 2 // int start
        start local 3 // int limit
         0: .line 79
            aload 0 /* this */
            invokespecial sun.text.CodePointIterator.<init>:()V
         1: .line 80
            iload 2 /* start */
            iflt 2
            iload 3 /* limit */
            iload 2 /* start */
            if_icmplt 2
            iload 3 /* limit */
            aload 1 /* text */
            arraylength
            if_icmple 3
         2: .line 81
      StackMap locals: sun.text.CharArrayCodePointIterator char[] int int
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         3: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* text */
            putfield sun.text.CharArrayCodePointIterator.text:[C
         4: .line 85
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* start */
            dup_x1
            putfield sun.text.CharArrayCodePointIterator.index:I
            putfield sun.text.CharArrayCodePointIterator.start:I
         5: .line 86
            aload 0 /* this */
            iload 3 /* limit */
            putfield sun.text.CharArrayCodePointIterator.limit:I
         6: .line 87
            return
        end local 3 // int limit
        end local 2 // int start
        end local 1 // char[] text
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lsun/text/CharArrayCodePointIterator;
            0    7     1   text  [C
            0    7     2  start  I
            0    7     3  limit  I
    MethodParameters:
       Name  Flags
      text   
      start  
      limit  

  public void setToStart();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.CharArrayCodePointIterator this
         0: .line 90
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.start:I
            putfield sun.text.CharArrayCodePointIterator.index:I
         1: .line 91
            return
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/CharArrayCodePointIterator;

  public void setToLimit();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.CharArrayCodePointIterator this
         0: .line 94
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.limit:I
            putfield sun.text.CharArrayCodePointIterator.index:I
         1: .line 95
            return
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/CharArrayCodePointIterator;

  public int next();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // sun.text.CharArrayCodePointIterator this
         0: .line 98
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.limit:I
            if_icmpge 8
         1: .line 99
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.text:[C
            aload 0 /* this */
            dup
            getfield sun.text.CharArrayCodePointIterator.index:I
            dup_x1
            iconst_1
            iadd
            putfield sun.text.CharArrayCodePointIterator.index:I
            caload
            istore 1 /* cp1 */
        start local 1 // char cp1
         2: .line 100
            iload 1 /* cp1 */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 7
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.limit:I
            if_icmpge 7
         3: .line 101
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.text:[C
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            caload
            istore 2 /* cp2 */
        start local 2 // char cp2
         4: .line 102
            iload 2 /* cp2 */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifeq 7
         5: .line 103
            aload 0 /* this */
            dup
            getfield sun.text.CharArrayCodePointIterator.index:I
            iconst_1
            iadd
            putfield sun.text.CharArrayCodePointIterator.index:I
         6: .line 104
            iload 1 /* cp1 */
            iload 2 /* cp2 */
            invokestatic java.lang.Character.toCodePoint:(CC)I
            ireturn
        end local 2 // char cp2
         7: .line 107
      StackMap locals: int
      StackMap stack:
            iload 1 /* cp1 */
            ireturn
        end local 1 // char cp1
         8: .line 109
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/text/CharArrayCodePointIterator;
            2    8     1   cp1  C
            4    7     2   cp2  C

  public int prev();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.text.CharArrayCodePointIterator this
         0: .line 113
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.start:I
            if_icmple 8
         1: .line 114
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.text:[C
            aload 0 /* this */
            dup
            getfield sun.text.CharArrayCodePointIterator.index:I
            iconst_1
            isub
            dup_x1
            putfield sun.text.CharArrayCodePointIterator.index:I
            caload
            istore 1 /* cp2 */
        start local 1 // char cp2
         2: .line 115
            iload 1 /* cp2 */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifeq 7
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.start:I
            if_icmple 7
         3: .line 116
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.text:[C
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            iconst_1
            isub
            caload
            istore 2 /* cp1 */
        start local 2 // char cp1
         4: .line 117
            iload 2 /* cp1 */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 7
         5: .line 118
            aload 0 /* this */
            dup
            getfield sun.text.CharArrayCodePointIterator.index:I
            iconst_1
            isub
            putfield sun.text.CharArrayCodePointIterator.index:I
         6: .line 119
            iload 2 /* cp1 */
            iload 1 /* cp2 */
            invokestatic java.lang.Character.toCodePoint:(CC)I
            ireturn
        end local 2 // char cp1
         7: .line 122
      StackMap locals: int
      StackMap stack:
            iload 1 /* cp2 */
            ireturn
        end local 1 // char cp2
         8: .line 124
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/text/CharArrayCodePointIterator;
            2    8     1   cp2  C
            4    7     2   cp1  C

  public int charIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.text.CharArrayCodePointIterator this
         0: .line 128
            aload 0 /* this */
            getfield sun.text.CharArrayCodePointIterator.index:I
            ireturn
        end local 0 // sun.text.CharArrayCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/CharArrayCodePointIterator;
}
SourceFile: "CodePointIterator.java"