public class sun.text.normalizer.RuleCharacterIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.text.normalizer.RuleCharacterIterator
  super_class: java.lang.Object
{
  private java.lang.String text;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.text.ParsePosition pos;
    descriptor: Ljava/text/ParsePosition;
    flags: (0x0002) ACC_PRIVATE

  private sun.text.normalizer.SymbolTable sym;
    descriptor: Lsun/text/normalizer/SymbolTable;
    flags: (0x0002) ACC_PRIVATE

  private char[] buf;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

  private boolean isEscaped;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static final int DONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public static final int PARSE_VARIABLES;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int PARSE_ESCAPES;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int SKIP_WHITESPACE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public void <init>(java.lang.String, sun.text.normalizer.SymbolTable, java.text.ParsePosition);
    descriptor: (Ljava/lang/String;Lsun/text/normalizer/SymbolTable;Ljava/text/ParsePosition;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // java.lang.String text
        start local 2 // sun.text.normalizer.SymbolTable sym
        start local 3 // java.text.ParsePosition pos
         0: .line 135
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 137
            aload 1 /* text */
            ifnull 2
            aload 3 /* pos */
            invokevirtual java.text.ParsePosition.getIndex:()I
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            if_icmple 3
         2: .line 138
      StackMap locals: sun.text.normalizer.RuleCharacterIterator java.lang.String sun.text.normalizer.SymbolTable java.text.ParsePosition
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         3: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* text */
            putfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
         4: .line 141
            aload 0 /* this */
            aload 2 /* sym */
            putfield sun.text.normalizer.RuleCharacterIterator.sym:Lsun/text/normalizer/SymbolTable;
         5: .line 142
            aload 0 /* this */
            aload 3 /* pos */
            putfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
         6: .line 143
            aload 0 /* this */
            aconst_null
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
         7: .line 144
            return
        end local 3 // java.text.ParsePosition pos
        end local 2 // sun.text.normalizer.SymbolTable sym
        end local 1 // java.lang.String text
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/text/normalizer/RuleCharacterIterator;
            0    8     1  text  Ljava/lang/String;
            0    8     2   sym  Lsun/text/normalizer/SymbolTable;
            0    8     3   pos  Ljava/text/ParsePosition;
    MethodParameters:
      Name  Flags
      text  
      sym   
      pos   

  public boolean atEnd();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
         0: .line 150
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnonnull 1
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/RuleCharacterIterator;

  public int next(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // int options
         0: .line 162
            iconst_m1
            istore 2 /* c */
        start local 2 // int c
         1: .line 163
            aload 0 /* this */
            iconst_0
            putfield sun.text.normalizer.RuleCharacterIterator.isEscaped:Z
         2: .line 166
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.text.normalizer.RuleCharacterIterator._current:()I
            istore 2 /* c */
         3: .line 167
            aload 0 /* this */
            iload 2 /* c */
            invokestatic sun.text.normalizer.UTF16.getCharCount:(I)I
            invokevirtual sun.text.normalizer.RuleCharacterIterator._advance:(I)V
         4: .line 169
            iload 2 /* c */
            bipush 36
            if_icmpne 18
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnonnull 18
         5: .line 170
            iload 1 /* options */
            iconst_1
            iand
            ifeq 18
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.sym:Lsun/text/normalizer/SymbolTable;
            ifnull 18
         6: .line 171
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.sym:Lsun/text/normalizer/SymbolTable;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            invokeinterface sun.text.normalizer.SymbolTable.parseReference:(Ljava/lang/String;Ljava/text/ParsePosition;I)Ljava/lang/String;
            astore 3 /* name */
        start local 3 // java.lang.String name
         7: .line 174
            aload 3 /* name */
            ifnonnull 9
         8: .line 175
            goto 28
         9: .line 177
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
        10: .line 178
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.sym:Lsun/text/normalizer/SymbolTable;
            aload 3 /* name */
            invokeinterface sun.text.normalizer.SymbolTable.lookup:(Ljava/lang/String;)[C
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
        11: .line 179
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnonnull 15
        12: .line 180
            new java.lang.IllegalArgumentException
            dup
        13: .line 181
            new java.lang.StringBuilder
            dup
            ldc "Undefined variable: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 180
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            ifne 2
        16: .line 185
            aload 0 /* this */
            aconst_null
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
        17: .line 187
            goto 2
        end local 3 // java.lang.String name
        18: .line 190
      StackMap locals:
      StackMap stack:
            iload 1 /* options */
            iconst_4
            iand
            ifeq 21
        19: .line 191
            iload 2 /* c */
            invokestatic sun.text.normalizer.UCharacterProperty.isRuleWhiteSpace:(I)Z
            ifeq 21
        20: .line 192
            goto 2
        21: .line 195
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            bipush 92
            if_icmpne 28
            iload 1 /* options */
            iconst_2
            iand
            ifeq 28
        22: .line 196
            iconst_1
            newarray 10
            astore 3 /* offset */
        start local 3 // int[] offset
        23: .line 197
            aload 0 /* this */
            invokevirtual sun.text.normalizer.RuleCharacterIterator.lookahead:()Ljava/lang/String;
            aload 3 /* offset */
            invokestatic sun.text.normalizer.Utility.unescapeAt:(Ljava/lang/String;[I)I
            istore 2 /* c */
        24: .line 198
            aload 0 /* this */
            aload 3 /* offset */
            iconst_0
            iaload
            invokevirtual sun.text.normalizer.RuleCharacterIterator.jumpahead:(I)V
        25: .line 199
            aload 0 /* this */
            iconst_1
            putfield sun.text.normalizer.RuleCharacterIterator.isEscaped:Z
        26: .line 200
            iload 2 /* c */
            ifge 28
        27: .line 201
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid escape"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // int[] offset
        28: .line 208
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            ireturn
        end local 2 // int c
        end local 1 // int options
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   29     0     this  Lsun/text/normalizer/RuleCharacterIterator;
            0   29     1  options  I
            1   29     2        c  I
            7   18     3     name  Ljava/lang/String;
           23   28     3   offset  [I
    MethodParameters:
         Name  Flags
      options  

  public boolean isEscaped();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
         0: .line 218
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.isEscaped:Z
            ireturn
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/normalizer/RuleCharacterIterator;

  public boolean inVariable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
         0: .line 225
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/RuleCharacterIterator;

  public java.lang.Object getPos(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // java.lang.Object p
         0: .line 248
            aload 1 /* p */
            ifnonnull 2
         1: .line 249
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            aastore
            dup
            iconst_1
            iconst_2
            newarray 10
            dup
            iconst_0
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            iastore
            dup
            iconst_1
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            iastore
            aastore
            areturn
         2: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* p */
            checkcast java.lang.Object[]
            astore 2 /* a */
        start local 2 // java.lang.Object[] a
         3: .line 252
            aload 2 /* a */
            iconst_0
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            aastore
         4: .line 253
            aload 2 /* a */
            iconst_1
            aaload
            checkcast int[]
            astore 3 /* v */
        start local 3 // int[] v
         5: .line 254
            aload 3 /* v */
            iconst_0
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            iastore
         6: .line 255
            aload 3 /* v */
            iconst_1
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            iastore
         7: .line 256
            aload 1 /* p */
            areturn
        end local 3 // int[] v
        end local 2 // java.lang.Object[] a
        end local 1 // java.lang.Object p
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/text/normalizer/RuleCharacterIterator;
            0    8     1     p  Ljava/lang/Object;
            3    8     2     a  [Ljava/lang/Object;
            5    8     3     v  [I
    MethodParameters:
      Name  Flags
      p     

  public void setPos(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // java.lang.Object p
         0: .line 265
            aload 1 /* p */
            checkcast java.lang.Object[]
            astore 2 /* a */
        start local 2 // java.lang.Object[] a
         1: .line 266
            aload 0 /* this */
            aload 2 /* a */
            iconst_0
            aaload
            checkcast char[]
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
         2: .line 267
            aload 2 /* a */
            iconst_1
            aaload
            checkcast int[]
            astore 3 /* v */
        start local 3 // int[] v
         3: .line 268
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            aload 3 /* v */
            iconst_0
            iaload
            invokevirtual java.text.ParsePosition.setIndex:(I)V
         4: .line 269
            aload 0 /* this */
            aload 3 /* v */
            iconst_1
            iaload
            putfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
         5: .line 270
            return
        end local 3 // int[] v
        end local 2 // java.lang.Object[] a
        end local 1 // java.lang.Object p
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/text/normalizer/RuleCharacterIterator;
            0    6     1     p  Ljava/lang/Object;
            1    6     2     a  [Ljava/lang/Object;
            3    6     3     v  [I
    MethodParameters:
      Name  Flags
      p     

  public void skipIgnored(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // int options
         0: .line 281
            iload 1 /* options */
            iconst_4
            iand
            ifeq 5
         1: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.text.normalizer.RuleCharacterIterator._current:()I
            istore 2 /* a */
        start local 2 // int a
         2: .line 284
            iload 2 /* a */
            invokestatic sun.text.normalizer.UCharacterProperty.isRuleWhiteSpace:(I)Z
            ifne 3
            goto 5
         3: .line 285
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* a */
            invokestatic sun.text.normalizer.UTF16.getCharCount:(I)I
            invokevirtual sun.text.normalizer.RuleCharacterIterator._advance:(I)V
        end local 2 // int a
         4: .line 282
            goto 1
         5: .line 288
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int options
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lsun/text/normalizer/RuleCharacterIterator;
            0    6     1  options  I
            2    4     2        a  I
    MethodParameters:
         Name  Flags
      options  

  public java.lang.String lookahead();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
         0: .line 303
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnull 2
         1: .line 304
            new java.lang.String
            dup
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            isub
            invokespecial java.lang.String.<init>:([CII)V
            areturn
         2: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            areturn
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/text/normalizer/RuleCharacterIterator;

  public void jumpahead(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // int count
         0: .line 316
            iload 1 /* count */
            ifge 2
         1: .line 317
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnull 9
         3: .line 320
            aload 0 /* this */
            dup
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            iload 1 /* count */
            iadd
            putfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
         4: .line 321
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            if_icmple 6
         5: .line 322
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         6: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            if_icmpne 13
         7: .line 325
            aload 0 /* this */
            aconst_null
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
         8: .line 327
            goto 13
         9: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            iload 1 /* count */
            iadd
            istore 2 /* i */
        start local 2 // int i
        10: .line 329
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            iload 2 /* i */
            invokevirtual java.text.ParsePosition.setIndex:(I)V
        11: .line 330
            iload 2 /* i */
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmple 13
        12: .line 331
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 2 // int i
        13: .line 334
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lsun/text/normalizer/RuleCharacterIterator;
            0   14     1  count  I
           10   13     2      i  I
    MethodParameters:
       Name  Flags
      count  

  private int _current();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
         0: .line 342
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnull 2
         1: .line 343
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            iconst_0
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            invokestatic sun.text.normalizer.UTF16.charAt:([CIII)I
            ireturn
         2: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            istore 1 /* i */
        start local 1 // int i
         3: .line 346
            iload 1 /* i */
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 4
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            iload 1 /* i */
            invokestatic sun.text.normalizer.UTF16.charAt:(Ljava/lang/String;I)I
            goto 5
      StackMap locals: int
      StackMap stack:
         4: iconst_m1
      StackMap locals:
      StackMap stack: int
         5: ireturn
        end local 1 // int i
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/text/normalizer/RuleCharacterIterator;
            3    6     1     i  I

  private void _advance(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.text.normalizer.RuleCharacterIterator this
        start local 1 // int count
         0: .line 355
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            ifnull 5
         1: .line 356
            aload 0 /* this */
            dup
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            iload 1 /* count */
            iadd
            putfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
         2: .line 357
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.bufPos:I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.buf:[C
            arraylength
            if_icmpne 8
         3: .line 358
            aload 0 /* this */
            aconst_null
            putfield sun.text.normalizer.RuleCharacterIterator.buf:[C
         4: .line 360
            goto 8
         5: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            iload 1 /* count */
            iadd
            invokevirtual java.text.ParsePosition.setIndex:(I)V
         6: .line 362
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            invokevirtual java.text.ParsePosition.getIndex:()I
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmple 8
         7: .line 363
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.pos:Ljava/text/ParsePosition;
            aload 0 /* this */
            getfield sun.text.normalizer.RuleCharacterIterator.text:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            invokevirtual java.text.ParsePosition.setIndex:(I)V
         8: .line 366
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // sun.text.normalizer.RuleCharacterIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lsun/text/normalizer/RuleCharacterIterator;
            0    9     1  count  I
    MethodParameters:
       Name  Flags
      count  
}
SourceFile: "RuleCharacterIterator.java"