final class sun.text.CharSequenceCodePointIterator extends sun.text.CodePointIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.text.CharSequenceCodePointIterator
  super_class: sun.text.CodePointIterator
{
  private java.lang.CharSequence text;
    descriptor: Ljava/lang/CharSequence;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.text.CharSequenceCodePointIterator this
        start local 1 // java.lang.CharSequence text
         0: .line 136
            aload 0 /* this */
            invokespecial sun.text.CodePointIterator.<init>:()V
         1: .line 137
            aload 0 /* this */
            aload 1 /* text */
            putfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
         2: .line 138
            return
        end local 1 // java.lang.CharSequence text
        end local 0 // sun.text.CharSequenceCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/text/CharSequenceCodePointIterator;
            0    3     1  text  Ljava/lang/CharSequence;
    MethodParameters:
      Name  Flags
      text  

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

  public void setToLimit();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.CharSequenceCodePointIterator this
         0: .line 145
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.length:()I
            putfield sun.text.CharSequenceCodePointIterator.index:I
         1: .line 146
            return
        end local 0 // sun.text.CharSequenceCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/CharSequenceCodePointIterator;

  public int next();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // sun.text.CharSequenceCodePointIterator this
         0: .line 149
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.length:()I
            if_icmpge 8
         1: .line 150
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            aload 0 /* this */
            dup
            getfield sun.text.CharSequenceCodePointIterator.index:I
            dup_x1
            iconst_1
            iadd
            putfield sun.text.CharSequenceCodePointIterator.index:I
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 1 /* cp1 */
        start local 1 // char cp1
         2: .line 151
            iload 1 /* cp1 */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 7
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.length:()I
            if_icmpge 7
         3: .line 152
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            iconst_1
            iadd
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 2 /* cp2 */
        start local 2 // char cp2
         4: .line 153
            iload 2 /* cp2 */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifeq 7
         5: .line 154
            aload 0 /* this */
            dup
            getfield sun.text.CharSequenceCodePointIterator.index:I
            iconst_1
            iadd
            putfield sun.text.CharSequenceCodePointIterator.index:I
         6: .line 155
            iload 1 /* cp1 */
            iload 2 /* cp2 */
            invokestatic java.lang.Character.toCodePoint:(CC)I
            ireturn
        end local 2 // char cp2
         7: .line 158
      StackMap locals: int
      StackMap stack:
            iload 1 /* cp1 */
            ireturn
        end local 1 // char cp1
         8: .line 160
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // sun.text.CharSequenceCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/text/CharSequenceCodePointIterator;
            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.CharSequenceCodePointIterator this
         0: .line 164
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            ifle 8
         1: .line 165
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            aload 0 /* this */
            dup
            getfield sun.text.CharSequenceCodePointIterator.index:I
            iconst_1
            isub
            dup_x1
            putfield sun.text.CharSequenceCodePointIterator.index:I
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 1 /* cp2 */
        start local 1 // char cp2
         2: .line 166
            iload 1 /* cp2 */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifeq 7
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            ifle 7
         3: .line 167
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.text:Ljava/lang/CharSequence;
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            iconst_1
            isub
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 2 /* cp1 */
        start local 2 // char cp1
         4: .line 168
            iload 2 /* cp1 */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 7
         5: .line 169
            aload 0 /* this */
            dup
            getfield sun.text.CharSequenceCodePointIterator.index:I
            iconst_1
            isub
            putfield sun.text.CharSequenceCodePointIterator.index:I
         6: .line 170
            iload 2 /* cp1 */
            iload 1 /* cp2 */
            invokestatic java.lang.Character.toCodePoint:(CC)I
            ireturn
        end local 2 // char cp1
         7: .line 173
      StackMap locals: int
      StackMap stack:
            iload 1 /* cp2 */
            ireturn
        end local 1 // char cp2
         8: .line 175
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // sun.text.CharSequenceCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/text/CharSequenceCodePointIterator;
            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.CharSequenceCodePointIterator this
         0: .line 179
            aload 0 /* this */
            getfield sun.text.CharSequenceCodePointIterator.index:I
            ireturn
        end local 0 // sun.text.CharSequenceCodePointIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/CharSequenceCodePointIterator;
}
SourceFile: "CodePointIterator.java"