final class java.text.DigitList implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: java.text.DigitList
  super_class: java.lang.Object
{
  public static final int MAX_COUNT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 19

  public int decimalAt;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int count;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public char[] digits;
    descriptor: [C
    flags: (0x0001) ACC_PUBLIC

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

  private java.math.RoundingMode roundingMode;
    descriptor: Ljava/math/RoundingMode;
    flags: (0x0002) ACC_PRIVATE

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

  private static final char[] LONG_MIN_REP;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private java.lang.StringBuffer tempBuffer;
    descriptor: Ljava/lang/StringBuffer;
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  private static volatile int[] $SWITCH_TABLE$java$math$RoundingMode;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 74
            ldc Ljava/text/DigitList;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic java.text.DigitList.$assertionsDisabled:Z
         3: .line 786
            ldc "9223372036854775808"
            invokevirtual java.lang.String.toCharArray:()[C
            putstatic java.text.DigitList.LONG_MIN_REP:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 103
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.decimalAt:I
         2: .line 104
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.count:I
         3: .line 105
            aload 0 /* this */
            bipush 19
            newarray 5
            putfield java.text.DigitList.digits:[C
         4: .line 108
            aload 0 /* this */
            getstatic java.math.RoundingMode.HALF_EVEN:Ljava/math/RoundingMode;
            putfield java.text.DigitList.roundingMode:Ljava/math/RoundingMode;
         5: .line 109
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.isNegative:Z
         6: .line 74
            return
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/text/DigitList;

  boolean isZero();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 115
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 5
         2: .line 116
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* i */
            caload
            bipush 48
            if_icmpeq 4
         3: .line 117
            iconst_0
            ireturn
         4: .line 115
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 2
        end local 1 // int i
         6: .line 120
            iconst_1
            ireturn
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/text/DigitList;
            1    6     1     i  I

  void setRoundingMode(java.math.RoundingMode);
    descriptor: (Ljava/math/RoundingMode;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.text.DigitList this
        start local 1 // java.math.RoundingMode r
         0: .line 127
            aload 0 /* this */
            aload 1 /* r */
            putfield java.text.DigitList.roundingMode:Ljava/math/RoundingMode;
         1: .line 128
            return
        end local 1 // java.math.RoundingMode r
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/text/DigitList;
            0    2     1     r  Ljava/math/RoundingMode;
    MethodParameters:
      Name  Flags
      r     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 138
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.decimalAt:I
         1: .line 139
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.count:I
         2: .line 140
            return
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/text/DigitList;

  public void append(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.text.DigitList this
        start local 1 // char digit
         0: .line 146
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            arraylength
            if_icmpne 4
         1: .line 147
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            bipush 100
            iadd
            newarray 5
            astore 2 /* data */
        start local 2 // char[] data
         2: .line 148
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 2 /* data */
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 149
            aload 0 /* this */
            aload 2 /* data */
            putfield java.text.DigitList.digits:[C
        end local 2 // char[] data
         4: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            aload 0 /* this */
            dup
            getfield java.text.DigitList.count:I
            dup_x1
            iconst_1
            iadd
            putfield java.text.DigitList.count:I
            iload 1 /* digit */
            castore
         5: .line 152
            return
        end local 1 // char digit
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljava/text/DigitList;
            0    6     1  digit  C
            2    4     2   data  [C
    MethodParameters:
       Name  Flags
      digit  

  public final double getDouble();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 160
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            ifne 2
         1: .line 161
            dconst_0
            dreturn
         2: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.text.DigitList.getStringBuffer:()Ljava/lang/StringBuffer;
            astore 1 /* temp */
        start local 1 // java.lang.StringBuffer temp
         3: .line 165
            aload 1 /* temp */
            bipush 46
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         4: .line 166
            aload 1 /* temp */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokevirtual java.lang.StringBuffer.append:([CII)Ljava/lang/StringBuffer;
            pop
         5: .line 167
            aload 1 /* temp */
            bipush 69
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         6: .line 168
            aload 1 /* temp */
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         7: .line 169
            aload 1 /* temp */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            invokestatic java.lang.Double.parseDouble:(Ljava/lang/String;)D
            dreturn
        end local 1 // java.lang.StringBuffer temp
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/text/DigitList;
            3    8     1  temp  Ljava/lang/StringBuffer;

  public final long getLong();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 179
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            ifne 2
         1: .line 180
            lconst_0
            lreturn
         2: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.text.DigitList.isLongMIN_VALUE:()Z
            ifeq 4
         3: .line 187
            ldc -9223372036854775808
            lreturn
         4: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.text.DigitList.getStringBuffer:()Ljava/lang/StringBuffer;
            astore 1 /* temp */
        start local 1 // java.lang.StringBuffer temp
         5: .line 191
            aload 1 /* temp */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokevirtual java.lang.StringBuffer.append:([CII)Ljava/lang/StringBuffer;
            pop
         6: .line 192
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            istore 2 /* i */
        start local 2 // int i
         7: goto 10
         8: .line 193
      StackMap locals: java.lang.StringBuffer int
      StackMap stack:
            aload 1 /* temp */
            bipush 48
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         9: .line 192
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            if_icmplt 8
        end local 2 // int i
        11: .line 195
            aload 1 /* temp */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lreturn
        end local 1 // java.lang.StringBuffer temp
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/text/DigitList;
            5   12     1  temp  Ljava/lang/StringBuffer;
            7   11     2     i  I

  public final java.math.BigDecimal getBigDecimal();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 199
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            ifne 4
         1: .line 200
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            ifne 3
         2: .line 201
            getstatic java.math.BigDecimal.ZERO:Ljava/math/BigDecimal;
            areturn
         3: .line 203
      StackMap locals:
      StackMap stack:
            new java.math.BigDecimal
            dup
            new java.lang.StringBuilder
            dup
            ldc "0E"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            areturn
         4: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmpne 6
         5: .line 208
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokespecial java.math.BigDecimal.<init>:([CII)V
            areturn
         6: .line 210
      StackMap locals:
      StackMap stack:
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokespecial java.math.BigDecimal.<init>:([CII)V
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            isub
            invokevirtual java.math.BigDecimal.scaleByPowerOfTen:(I)Ljava/math/BigDecimal;
            areturn
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/text/DigitList;

  boolean fitsIntoLong(boolean, boolean);
    descriptor: (ZZ)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // java.text.DigitList this
        start local 1 // boolean isPositive
        start local 2 // boolean ignoreNegativeZero
         0: .line 230
            goto 2
         1: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            putfield java.text.DigitList.count:I
         2: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            ifle 3
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            caload
            bipush 48
            if_icmpeq 1
         3: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            ifne 6
         4: .line 237
            iload 1 /* isPositive */
            ifne 5
            iload 2 /* ignoreNegativeZero */
            ifne 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
         6: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 7
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            bipush 19
            if_icmple 8
         7: .line 241
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         8: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            bipush 19
            if_icmpge 9
            iconst_1
            ireturn
         9: .line 249
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 16
        11: .line 250
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 3 /* i */
            caload
            istore 4 /* dig */
        start local 4 // char dig
        12: getstatic java.text.DigitList.LONG_MIN_REP:[C
            iload 3 /* i */
            caload
            istore 5 /* max */
        start local 5 // char max
        13: .line 251
            iload 4 /* dig */
            iload 5 /* max */
            if_icmple 14
            iconst_0
            ireturn
        14: .line 252
      StackMap locals: int int
      StackMap stack:
            iload 4 /* dig */
            iload 5 /* max */
            if_icmpge 15
            iconst_1
            ireturn
        end local 5 // char max
        end local 4 // char dig
        15: .line 249
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 11
        end local 3 // int i
        17: .line 257
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            if_icmpge 18
            iconst_1
            ireturn
        18: .line 262
      StackMap locals:
      StackMap stack:
            iload 1 /* isPositive */
            ifeq 19
            iconst_0
            goto 20
      StackMap locals:
      StackMap stack:
        19: iconst_1
      StackMap locals:
      StackMap stack: int
        20: ireturn
        end local 2 // boolean ignoreNegativeZero
        end local 1 // boolean isPositive
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   21     0                this  Ljava/text/DigitList;
            0   21     1          isPositive  Z
            0   21     2  ignoreNegativeZero  Z
           10   17     3                   i  I
           12   15     4                 dig  C
           13   15     5                 max  C
    MethodParameters:
                    Name  Flags
      isPositive          
      ignoreNegativeZero  

  final void set(boolean, double, int);
    descriptor: (ZDI)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // double source
        start local 4 // int maximumFractionDigits
         0: .line 275
            aload 0 /* this */
            iload 1 /* isNegative */
            dload 2 /* source */
            iload 4 /* maximumFractionDigits */
            iconst_1
            invokevirtual java.text.DigitList.set:(ZDIZ)V
         1: .line 276
            return
        end local 4 // int maximumFractionDigits
        end local 2 // double source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Ljava/text/DigitList;
            0    2     1             isNegative  Z
            0    2     2                 source  D
            0    2     4  maximumFractionDigits  I
    MethodParameters:
                       Name  Flags
      isNegative             
      source                 
      maximumFractionDigits  

  final void set(boolean, double, int, boolean);
    descriptor: (ZDIZ)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=7, locals=10, args_size=5
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // double source
        start local 4 // int maximumDigits
        start local 5 // boolean fixedPoint
         0: .line 291
            dload 2 /* source */
            invokestatic sun.misc.FloatingDecimal.getBinaryToASCIIConverter:(D)Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;
            astore 6 /* fdConverter */
        start local 6 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
         1: .line 292
            aload 6 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.digitsRoundedUp:()Z
            istore 7 /* hasBeenRoundedUp */
        start local 7 // boolean hasBeenRoundedUp
         2: .line 293
            aload 6 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.decimalDigitsExact:()Z
            istore 8 /* valueExactAsDecimal */
        start local 8 // boolean valueExactAsDecimal
         3: .line 294
            getstatic java.text.DigitList.$assertionsDisabled:Z
            ifne 4
            aload 6 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.isExceptional:()Z
            ifeq 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 295
      StackMap locals: sun.misc.FloatingDecimal$BinaryToASCIIConverter int int
      StackMap stack:
            aload 6 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.toJavaFormatString:()Ljava/lang/String;
            astore 9 /* digitsString */
        start local 9 // java.lang.String digitsString
         5: .line 297
            aload 0 /* this */
            iload 1 /* isNegative */
            aload 9 /* digitsString */
         6: .line 298
            iload 7 /* hasBeenRoundedUp */
            iload 8 /* valueExactAsDecimal */
         7: .line 299
            iload 4 /* maximumDigits */
            iload 5 /* fixedPoint */
         8: .line 297
            invokevirtual java.text.DigitList.set:(ZLjava/lang/String;ZZIZ)V
         9: .line 300
            return
        end local 9 // java.lang.String digitsString
        end local 8 // boolean valueExactAsDecimal
        end local 7 // boolean hasBeenRoundedUp
        end local 6 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
        end local 5 // boolean fixedPoint
        end local 4 // int maximumDigits
        end local 2 // double source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Ljava/text/DigitList;
            0   10     1           isNegative  Z
            0   10     2               source  D
            0   10     4        maximumDigits  I
            0   10     5           fixedPoint  Z
            1   10     6          fdConverter  Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;
            2   10     7     hasBeenRoundedUp  Z
            3   10     8  valueExactAsDecimal  Z
            5   10     9         digitsString  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      isNegative     
      source         
      maximumDigits  
      fixedPoint     

  private void set(boolean, java.lang.String, boolean, boolean, int, boolean);
    descriptor: (ZLjava/lang/String;ZZIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=14, args_size=7
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // java.lang.String s
        start local 3 // boolean roundedUp
        start local 4 // boolean valueExactAsDecimal
        start local 5 // int maximumDigits
        start local 6 // boolean fixedPoint
         0: .line 313
            aload 0 /* this */
            iload 1 /* isNegative */
            putfield java.text.DigitList.isNegative:Z
         1: .line 314
            aload 2 /* s */
            invokevirtual java.lang.String.length:()I
            istore 7 /* len */
        start local 7 // int len
         2: .line 315
            aload 0 /* this */
            iload 7 /* len */
            invokevirtual java.text.DigitList.getDataChars:(I)[C
            astore 8 /* source */
        start local 8 // char[] source
         3: .line 316
            aload 2 /* s */
            iconst_0
            iload 7 /* len */
            aload 8 /* source */
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         4: .line 318
            aload 0 /* this */
            iconst_m1
            putfield java.text.DigitList.decimalAt:I
         5: .line 319
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.count:I
         6: .line 320
            iconst_0
            istore 9 /* exponent */
        start local 9 // int exponent
         7: .line 323
            iconst_0
            istore 10 /* leadingZerosAfterDecimal */
        start local 10 // int leadingZerosAfterDecimal
         8: .line 324
            iconst_0
            istore 11 /* nonZeroDigitSeen */
        start local 11 // boolean nonZeroDigitSeen
         9: .line 326
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        10: goto 26
        11: .line 327
      StackMap locals: java.text.DigitList int java.lang.String int int int int int char[] int int int int
      StackMap stack:
            aload 8 /* source */
            iload 12 /* i */
            iinc 12 /* i */ 1
            caload
            istore 13 /* c */
        start local 13 // char c
        12: .line 328
            iload 13 /* c */
            bipush 46
            if_icmpne 15
        13: .line 329
            aload 0 /* this */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            putfield java.text.DigitList.decimalAt:I
        14: .line 330
            goto 26
      StackMap locals: int
      StackMap stack:
        15: iload 13 /* c */
            bipush 101
            if_icmpeq 16
            iload 13 /* c */
            bipush 69
            if_icmpne 18
        16: .line 331
      StackMap locals:
      StackMap stack:
            aload 8 /* source */
            iload 12 /* i */
            iload 7 /* len */
            invokestatic java.text.DigitList.parseInt:([CII)I
            istore 9 /* exponent */
        17: .line 332
            goto 27
        18: .line 334
      StackMap locals:
      StackMap stack:
            iload 11 /* nonZeroDigitSeen */
            ifne 24
        19: .line 335
            iload 13 /* c */
            bipush 48
            if_icmpeq 20
            iconst_1
            goto 21
      StackMap locals:
      StackMap stack:
        20: iconst_0
      StackMap locals:
      StackMap stack: int
        21: istore 11 /* nonZeroDigitSeen */
        22: .line 336
            iload 11 /* nonZeroDigitSeen */
            ifne 24
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            iconst_m1
            if_icmpeq 24
        23: .line 337
            iinc 10 /* leadingZerosAfterDecimal */ 1
        24: .line 339
      StackMap locals:
      StackMap stack:
            iload 11 /* nonZeroDigitSeen */
            ifeq 26
        25: .line 340
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            aload 0 /* this */
            dup
            getfield java.text.DigitList.count:I
            dup_x1
            iconst_1
            iadd
            putfield java.text.DigitList.count:I
            iload 13 /* c */
            castore
        end local 13 // char c
        26: .line 326
      StackMap locals:
      StackMap stack:
            iload 12 /* i */
            iload 7 /* len */
            if_icmplt 11
        end local 12 // int i
        27: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            iconst_m1
            if_icmpne 29
        28: .line 345
            aload 0 /* this */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            putfield java.text.DigitList.decimalAt:I
        29: .line 347
      StackMap locals:
      StackMap stack:
            iload 11 /* nonZeroDigitSeen */
            ifeq 31
        30: .line 348
            aload 0 /* this */
            dup
            getfield java.text.DigitList.decimalAt:I
            iload 9 /* exponent */
            iload 10 /* leadingZerosAfterDecimal */
            isub
            iadd
            putfield java.text.DigitList.decimalAt:I
        31: .line 351
      StackMap locals:
      StackMap stack:
            iload 6 /* fixedPoint */
            ifeq 44
        32: .line 357
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            ineg
            iload 5 /* maximumDigits */
            if_icmple 35
        33: .line 360
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.count:I
        34: .line 361
            return
        35: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            ineg
            iload 5 /* maximumDigits */
            if_icmpne 44
        36: .line 365
            aload 0 /* this */
            iconst_0
            iload 3 /* roundedUp */
            iload 4 /* valueExactAsDecimal */
            invokevirtual java.text.DigitList.shouldRoundUp:(IZZ)Z
            ifeq 41
        37: .line 366
            aload 0 /* this */
            iconst_1
            putfield java.text.DigitList.count:I
        38: .line 367
            aload 0 /* this */
            dup
            getfield java.text.DigitList.decimalAt:I
            iconst_1
            iadd
            putfield java.text.DigitList.decimalAt:I
        39: .line 368
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            bipush 49
            castore
        40: .line 369
            goto 42
        41: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield java.text.DigitList.count:I
        42: .line 372
      StackMap locals:
      StackMap stack:
            return
        43: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            putfield java.text.DigitList.count:I
        44: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            if_icmple 45
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            caload
            bipush 48
            if_icmpeq 43
        45: .line 384
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* fixedPoint */
            ifeq 46
            iload 5 /* maximumDigits */
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            iadd
            goto 47
      StackMap locals:
      StackMap stack: java.text.DigitList
        46: iload 5 /* maximumDigits */
        47: .line 385
      StackMap locals: java.text.DigitList int java.lang.String int int int int int char[] int int int
      StackMap stack: java.text.DigitList int
            iload 3 /* roundedUp */
            iload 4 /* valueExactAsDecimal */
        48: .line 384
            invokevirtual java.text.DigitList.round:(IZZ)V
        49: .line 387
            return
        end local 11 // boolean nonZeroDigitSeen
        end local 10 // int leadingZerosAfterDecimal
        end local 9 // int exponent
        end local 8 // char[] source
        end local 7 // int len
        end local 6 // boolean fixedPoint
        end local 5 // int maximumDigits
        end local 4 // boolean valueExactAsDecimal
        end local 3 // boolean roundedUp
        end local 2 // java.lang.String s
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   50     0                      this  Ljava/text/DigitList;
            0   50     1                isNegative  Z
            0   50     2                         s  Ljava/lang/String;
            0   50     3                 roundedUp  Z
            0   50     4       valueExactAsDecimal  Z
            0   50     5             maximumDigits  I
            0   50     6                fixedPoint  Z
            2   50     7                       len  I
            3   50     8                    source  [C
            7   50     9                  exponent  I
            8   50    10  leadingZerosAfterDecimal  I
            9   50    11          nonZeroDigitSeen  Z
           10   27    12                         i  I
           12   26    13                         c  C
    MethodParameters:
                     Name  Flags
      isNegative           
      s                    
      roundedUp            
      valueExactAsDecimal  
      maximumDigits        
      fixedPoint           

  private final void round(int, boolean, boolean);
    descriptor: (IZZ)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.text.DigitList this
        start local 1 // int maximumDigits
        start local 2 // boolean alreadyRounded
        start local 3 // boolean valueExactAsDecimal
         0: .line 403
            iload 1 /* maximumDigits */
            iflt 15
            iload 1 /* maximumDigits */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmpge 15
         1: .line 404
            aload 0 /* this */
            iload 1 /* maximumDigits */
            iload 2 /* alreadyRounded */
            iload 3 /* valueExactAsDecimal */
            invokevirtual java.text.DigitList.shouldRoundUp:(IZZ)Z
            ifeq 11
         2: .line 409
      StackMap locals:
      StackMap stack:
            iinc 1 /* maximumDigits */ -1
         3: .line 410
            iload 1 /* maximumDigits */
            ifge 8
         4: .line 413
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            bipush 49
            castore
         5: .line 414
            aload 0 /* this */
            dup
            getfield java.text.DigitList.decimalAt:I
            iconst_1
            iadd
            putfield java.text.DigitList.decimalAt:I
         6: .line 415
            iconst_0
            istore 1 /* maximumDigits */
         7: .line 416
            goto 10
         8: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            dup2
            caload
            iconst_1
            iadd
            i2c
            castore
         9: .line 420
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            caload
            bipush 57
            if_icmpgt 2
        10: .line 423
      StackMap locals:
      StackMap stack:
            iinc 1 /* maximumDigits */ 1
        11: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* maximumDigits */
            putfield java.text.DigitList.count:I
        12: .line 428
            goto 14
        13: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            putfield java.text.DigitList.count:I
        14: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            if_icmple 15
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            caload
            bipush 48
            if_icmpeq 13
        15: .line 432
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean valueExactAsDecimal
        end local 2 // boolean alreadyRounded
        end local 1 // int maximumDigits
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   16     0                 this  Ljava/text/DigitList;
            0   16     1        maximumDigits  I
            0   16     2       alreadyRounded  Z
            0   16     3  valueExactAsDecimal  Z
    MethodParameters:
                     Name  Flags
      maximumDigits        
      alreadyRounded       
      valueExactAsDecimal  

  private boolean shouldRoundUp(int, boolean, boolean);
    descriptor: (IZZ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // java.text.DigitList this
        start local 1 // int maximumDigits
        start local 2 // boolean alreadyRounded
        start local 3 // boolean valueExactAsDecimal
         0: .line 456
            iload 1 /* maximumDigits */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmpge 66
         1: .line 503
            invokestatic java.text.DigitList.$SWITCH_TABLE$java$math$RoundingMode:()[I
            aload 0 /* this */
            getfield java.text.DigitList.roundingMode:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iaload
            tableswitch { // 1 - 8
                    1: 2
                    2: 9
                    3: 10
                    4: 19
                    5: 26
                    6: 26
                    7: 37
                    8: 56
              default: 65
          }
         2: .line 505
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 506
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 4 /* i */
            caload
            bipush 48
            if_icmpeq 6
         5: .line 507
            iconst_1
            ireturn
         6: .line 505
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 4
        end local 4 // int i
         8: .line 510
            goto 66
         9: .line 512
      StackMap locals:
      StackMap stack:
            goto 66
        10: .line 514
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            istore 4 /* i */
        start local 4 // int i
        11: goto 17
        12: .line 515
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 4 /* i */
            caload
            bipush 48
            if_icmpeq 16
        13: .line 516
            aload 0 /* this */
            getfield java.text.DigitList.isNegative:Z
            ifeq 14
            iconst_0
            goto 15
      StackMap locals:
      StackMap stack:
        14: iconst_1
      StackMap locals:
      StackMap stack: int
        15: ireturn
        16: .line 514
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 12
        end local 4 // int i
        18: .line 519
            goto 66
        19: .line 521
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            istore 4 /* i */
        start local 4 // int i
        20: goto 24
        21: .line 522
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 4 /* i */
            caload
            bipush 48
            if_icmpeq 23
        22: .line 523
            aload 0 /* this */
            getfield java.text.DigitList.isNegative:Z
            ireturn
        23: .line 521
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 4 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 21
        end local 4 // int i
        25: .line 526
            goto 66
        26: .line 529
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            caload
            bipush 53
            if_icmple 28
        27: .line 531
            iconst_1
            ireturn
        28: .line 532
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            caload
            bipush 53
            if_icmpne 66
        29: .line 534
            iload 1 /* maximumDigits */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            if_icmpeq 31
        30: .line 536
            iconst_1
            ireturn
        31: .line 539
      StackMap locals:
      StackMap stack:
            iload 3 /* valueExactAsDecimal */
            ifeq 34
        32: .line 542
            aload 0 /* this */
            getfield java.text.DigitList.roundingMode:Ljava/math/RoundingMode;
            getstatic java.math.RoundingMode.HALF_UP:Ljava/math/RoundingMode;
            if_acmpne 33
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        33: iconst_0
            ireturn
        34: .line 547
      StackMap locals:
      StackMap stack:
            iload 2 /* alreadyRounded */
            ifeq 35
            iconst_0
            goto 36
      StackMap locals:
      StackMap stack:
        35: iconst_1
      StackMap locals:
      StackMap stack: int
        36: ireturn
        37: .line 556
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            caload
            bipush 53
            if_icmple 39
        38: .line 557
            iconst_1
            ireturn
        39: .line 558
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            caload
            bipush 53
            if_icmpne 66
        40: .line 559
            iload 1 /* maximumDigits */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            iconst_1
            isub
            if_icmpne 49
        41: .line 561
            iload 2 /* alreadyRounded */
            ifeq 43
        42: .line 564
            iconst_0
            ireturn
        43: .line 566
      StackMap locals:
      StackMap stack:
            iload 3 /* valueExactAsDecimal */
            ifne 45
        44: .line 570
            iconst_1
            ireturn
        45: .line 575
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            ifle 48
        46: .line 576
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* maximumDigits */
            iconst_1
            isub
            caload
            iconst_2
            irem
            ifeq 48
        47: .line 575
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        48: iconst_0
            ireturn
        49: .line 580
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            iconst_1
            iadd
            istore 4 /* i */
        start local 4 // int i
        50: goto 54
        51: .line 581
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 4 /* i */
            caload
            bipush 48
            if_icmpeq 53
        52: .line 582
            iconst_1
            ireturn
        53: .line 580
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        54: iload 4 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 51
        end local 4 // int i
        55: .line 586
            goto 66
        56: .line 588
      StackMap locals:
      StackMap stack:
            iload 1 /* maximumDigits */
            istore 4 /* i */
        start local 4 // int i
        57: goto 63
        58: .line 589
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 4 /* i */
            caload
            bipush 48
            if_icmpeq 62
        59: .line 590
            new java.lang.ArithmeticException
            dup
        60: .line 591
            ldc "Rounding needed with the rounding mode being set to RoundingMode.UNNECESSARY"
        61: .line 590
            invokespecial java.lang.ArithmeticException.<init>:(Ljava/lang/String;)V
            athrow
        62: .line 588
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        63: iload 4 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 58
        end local 4 // int i
        64: .line 594
            goto 66
        65: .line 596
      StackMap locals:
      StackMap stack:
            getstatic java.text.DigitList.$assertionsDisabled:Z
            ifne 66
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        66: .line 599
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // boolean valueExactAsDecimal
        end local 2 // boolean alreadyRounded
        end local 1 // int maximumDigits
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   67     0                 this  Ljava/text/DigitList;
            0   67     1        maximumDigits  I
            0   67     2       alreadyRounded  Z
            0   67     3  valueExactAsDecimal  Z
            3    8     4                    i  I
           11   18     4                    i  I
           20   25     4                    i  I
           50   55     4                    i  I
           57   64     4                    i  I
    MethodParameters:
                     Name  Flags
      maximumDigits        
      alreadyRounded       
      valueExactAsDecimal  

  final void set(boolean, long);
    descriptor: (ZJ)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // long source
         0: .line 606
            aload 0 /* this */
            iload 1 /* isNegative */
            lload 2 /* source */
            iconst_0
            invokevirtual java.text.DigitList.set:(ZJI)V
         1: .line 607
            return
        end local 2 // long source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljava/text/DigitList;
            0    2     1  isNegative  Z
            0    2     2      source  J
    MethodParameters:
            Name  Flags
      isNegative  
      source      

  final void set(boolean, long, int);
    descriptor: (ZJI)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=8, locals=7, args_size=4
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // long source
        start local 4 // int maximumDigits
         0: .line 619
            aload 0 /* this */
            iload 1 /* isNegative */
            putfield java.text.DigitList.isNegative:Z
         1: .line 627
            lload 2 /* source */
            lconst_0
            lcmp
            ifgt 8
         2: .line 628
            lload 2 /* source */
            ldc -9223372036854775808
            lcmp
            ifne 6
         3: .line 629
            aload 0 /* this */
            aload 0 /* this */
            bipush 19
            dup_x1
            putfield java.text.DigitList.count:I
            putfield java.text.DigitList.decimalAt:I
         4: .line 630
            getstatic java.text.DigitList.LONG_MIN_REP:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 631
            goto 20
         6: .line 632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield java.text.DigitList.count:I
            putfield java.text.DigitList.decimalAt:I
         7: .line 634
            goto 20
         8: .line 637
      StackMap locals:
      StackMap stack:
            bipush 19
            istore 5 /* left */
        start local 5 // int left
         9: .line 639
            goto 12
        10: .line 640
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iinc 5 /* left */ -1
            iload 5 /* left */
            ldc 48
            lload 2 /* source */
            ldc 10
            lrem
            ladd
            l2i
            i2c
            castore
        11: .line 641
            lload 2 /* source */
            ldc 10
            ldiv
            lstore 2 /* source */
        12: .line 639
      StackMap locals:
      StackMap stack:
            lload 2 /* source */
            lconst_0
            lcmp
            ifgt 10
        13: .line 643
            aload 0 /* this */
            bipush 19
            iload 5 /* left */
            isub
            putfield java.text.DigitList.decimalAt:I
        14: .line 646
            bipush 18
            istore 6 /* right */
        start local 6 // int right
        15: goto 17
      StackMap locals: int
      StackMap stack:
        16: iinc 6 /* right */ -1
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 6 /* right */
            caload
            bipush 48
            if_icmpeq 16
        18: .line 648
            aload 0 /* this */
            iload 6 /* right */
            iload 5 /* left */
            isub
            iconst_1
            iadd
            putfield java.text.DigitList.count:I
        19: .line 649
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 5 /* left */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 6 // int right
        end local 5 // int left
        20: .line 651
      StackMap locals:
      StackMap stack:
            iload 4 /* maximumDigits */
            ifle 21
            aload 0 /* this */
            iload 4 /* maximumDigits */
            iconst_0
            iconst_1
            invokevirtual java.text.DigitList.round:(IZZ)V
        21: .line 652
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int maximumDigits
        end local 2 // long source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   22     0           this  Ljava/text/DigitList;
            0   22     1     isNegative  Z
            0   22     2         source  J
            0   22     4  maximumDigits  I
            9   20     5           left  I
           15   20     6          right  I
    MethodParameters:
               Name  Flags
      isNegative     
      source         
      maximumDigits  

  final void set(boolean, java.math.BigDecimal, int, boolean);
    descriptor: (ZLjava/math/BigDecimal;IZ)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // java.math.BigDecimal source
        start local 3 // int maximumDigits
        start local 4 // boolean fixedPoint
         0: .line 665
            aload 2 /* source */
            invokevirtual java.math.BigDecimal.toString:()Ljava/lang/String;
            astore 5 /* s */
        start local 5 // java.lang.String s
         1: .line 666
            aload 0 /* this */
            aload 5 /* s */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.text.DigitList.extendDigits:(I)V
         2: .line 668
            aload 0 /* this */
            iload 1 /* isNegative */
            aload 5 /* s */
         3: .line 669
            iconst_0
            iconst_1
         4: .line 670
            iload 3 /* maximumDigits */
            iload 4 /* fixedPoint */
         5: .line 668
            invokevirtual java.text.DigitList.set:(ZLjava/lang/String;ZZIZ)V
         6: .line 671
            return
        end local 5 // java.lang.String s
        end local 4 // boolean fixedPoint
        end local 3 // int maximumDigits
        end local 2 // java.math.BigDecimal source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Ljava/text/DigitList;
            0    7     1     isNegative  Z
            0    7     2         source  Ljava/math/BigDecimal;
            0    7     3  maximumDigits  I
            0    7     4     fixedPoint  Z
            1    7     5              s  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      isNegative     
      source         
      maximumDigits  
      fixedPoint     

  final void set(boolean, java.math.BigInteger, int);
    descriptor: (ZLjava/math/BigInteger;I)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // java.text.DigitList this
        start local 1 // boolean isNegative
        start local 2 // java.math.BigInteger source
        start local 3 // int maximumDigits
         0: .line 682
            aload 0 /* this */
            iload 1 /* isNegative */
            putfield java.text.DigitList.isNegative:Z
         1: .line 683
            aload 2 /* source */
            invokevirtual java.math.BigInteger.toString:()Ljava/lang/String;
            astore 4 /* s */
        start local 4 // java.lang.String s
         2: .line 684
            aload 4 /* s */
            invokevirtual java.lang.String.length:()I
            istore 5 /* len */
        start local 5 // int len
         3: .line 685
            aload 0 /* this */
            iload 5 /* len */
            invokevirtual java.text.DigitList.extendDigits:(I)V
         4: .line 686
            aload 4 /* s */
            iconst_0
            iload 5 /* len */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         5: .line 688
            aload 0 /* this */
            iload 5 /* len */
            putfield java.text.DigitList.decimalAt:I
         6: .line 690
            iload 5 /* len */
            iconst_1
            isub
            istore 6 /* right */
        start local 6 // int right
         7: goto 9
      StackMap locals: java.lang.String int int
      StackMap stack:
         8: iinc 6 /* right */ -1
      StackMap locals:
      StackMap stack:
         9: iload 6 /* right */
            iflt 10
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 6 /* right */
            caload
            bipush 48
            if_icmpeq 8
        10: .line 692
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* right */
            iconst_1
            iadd
            putfield java.text.DigitList.count:I
        11: .line 694
            iload 3 /* maximumDigits */
            ifle 13
        12: .line 695
            aload 0 /* this */
            iload 3 /* maximumDigits */
            iconst_0
            iconst_1
            invokevirtual java.text.DigitList.round:(IZZ)V
        13: .line 697
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int right
        end local 5 // int len
        end local 4 // java.lang.String s
        end local 3 // int maximumDigits
        end local 2 // java.math.BigInteger source
        end local 1 // boolean isNegative
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Ljava/text/DigitList;
            0   14     1     isNegative  Z
            0   14     2         source  Ljava/math/BigInteger;
            0   14     3  maximumDigits  I
            2   14     4              s  Ljava/lang/String;
            3   14     5            len  I
            7   14     6          right  I
    MethodParameters:
               Name  Flags
      isNegative     
      source         
      maximumDigits  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.text.DigitList this
        start local 1 // java.lang.Object obj
         0: .line 703
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 704
            iconst_1
            ireturn
         2: .line 705
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof java.text.DigitList
            ifne 4
         3: .line 706
            iconst_0
            ireturn
         4: .line 707
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast java.text.DigitList
            astore 2 /* other */
        start local 2 // java.text.DigitList other
         5: .line 708
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            aload 2 /* other */
            getfield java.text.DigitList.count:I
            if_icmpne 7
         6: .line 709
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            aload 2 /* other */
            getfield java.text.DigitList.decimalAt:I
            if_icmpeq 8
         7: .line 710
      StackMap locals: java.text.DigitList
      StackMap stack:
            iconst_0
            ireturn
         8: .line 711
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 13
        10: .line 712
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 3 /* i */
            caload
            aload 2 /* other */
            getfield java.text.DigitList.digits:[C
            iload 3 /* i */
            caload
            if_icmpeq 12
        11: .line 713
            iconst_0
            ireturn
        12: .line 711
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 10
        end local 3 // int i
        14: .line 714
            iconst_1
            ireturn
        end local 2 // java.text.DigitList other
        end local 1 // java.lang.Object obj
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Ljava/text/DigitList;
            0   15     1    obj  Ljava/lang/Object;
            5   15     2  other  Ljava/text/DigitList;
            9   14     3      i  I
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 721
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            istore 1 /* hashcode */
        start local 1 // int hashcode
         1: .line 723
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 724
      StackMap locals: int int
      StackMap stack:
            iload 1 /* hashcode */
            bipush 37
            imul
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 2 /* i */
            caload
            iadd
            istore 1 /* hashcode */
         4: .line 723
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 3
        end local 2 // int i
         6: .line 727
            iload 1 /* hashcode */
            ireturn
        end local 1 // int hashcode
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljava/text/DigitList;
            1    7     1  hashcode  I
            2    6     2         i  I

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 736
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast java.text.DigitList
            astore 1 /* other */
        start local 1 // java.text.DigitList other
         1: .line 737
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            arraylength
            newarray 5
            astore 2 /* newDigits */
        start local 2 // char[] newDigits
         2: .line 738
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 2 /* newDigits */
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 739
            aload 1 /* other */
            aload 2 /* newDigits */
            putfield java.text.DigitList.digits:[C
         4: .line 740
            aload 1 /* other */
            aconst_null
            putfield java.text.DigitList.tempBuffer:Ljava/lang/StringBuffer;
         5: .line 741
            aload 1 /* other */
         6: areturn
        end local 2 // char[] newDigits
        end local 1 // java.text.DigitList other
         7: .line 742
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         8: .line 743
            new java.lang.InternalError
            dup
            aload 1 /* e */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Ljava/text/DigitList;
            1    7     1      other  Ljava/text/DigitList;
            2    7     2  newDigits  [C
            8    9     1          e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     6       7  Class java.lang.CloneNotSupportedException

  private boolean isLongMIN_VALUE();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 752
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmpne 1
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            bipush 19
            if_icmpeq 2
         1: .line 753
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 756
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         3: goto 6
         4: .line 757
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iload 1 /* i */
            caload
            getstatic java.text.DigitList.LONG_MIN_REP:[C
            iload 1 /* i */
            caload
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 756
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 1 /* i */
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            if_icmplt 4
        end local 1 // int i
         7: .line 760
            iconst_1
            ireturn
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/text/DigitList;
            3    7     1     i  I

  private static final int parseInt(char[], int, int);
    descriptor: ([CII)I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // char[] str
        start local 1 // int offset
        start local 2 // int strLen
         0: .line 765
            iconst_1
            istore 4 /* positive */
        start local 4 // boolean positive
         1: .line 766
            aload 0 /* str */
            iload 1 /* offset */
            caload
            dup
            istore 3 /* c */
        start local 3 // char c
         2: bipush 45
            if_icmpne 6
         3: .line 767
            iconst_0
            istore 4 /* positive */
         4: .line 768
            iinc 1 /* offset */ 1
         5: .line 769
            goto 8
      StackMap locals: int int
      StackMap stack:
         6: iload 3 /* c */
            bipush 43
            if_icmpne 8
         7: .line 770
            iinc 1 /* offset */ 1
         8: .line 773
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* value */
        start local 5 // int value
         9: .line 774
            goto 13
        10: .line 775
      StackMap locals: int
      StackMap stack:
            aload 0 /* str */
            iload 1 /* offset */
            iinc 1 /* offset */ 1
            caload
            istore 3 /* c */
        11: .line 776
            iload 3 /* c */
            bipush 48
            if_icmplt 14
            iload 3 /* c */
            bipush 57
            if_icmpgt 14
        12: .line 777
            iload 5 /* value */
            bipush 10
            imul
            iload 3 /* c */
            bipush 48
            isub
            iadd
            istore 5 /* value */
        13: .line 774
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 2 /* strLen */
            if_icmplt 10
        14: .line 782
      StackMap locals:
      StackMap stack:
            iload 4 /* positive */
            ifeq 15
            iload 5 /* value */
            goto 16
      StackMap locals:
      StackMap stack:
        15: iload 5 /* value */
            ineg
      StackMap locals:
      StackMap stack: int
        16: ireturn
        end local 5 // int value
        end local 4 // boolean positive
        end local 3 // char c
        end local 2 // int strLen
        end local 1 // int offset
        end local 0 // char[] str
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0       str  [C
            0   17     1    offset  I
            0   17     2    strLen  I
            2   17     3         c  C
            1   17     4  positive  Z
            9   17     5     value  I
    MethodParameters:
        Name  Flags
      str     
      offset  
      strLen  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 789
            aload 0 /* this */
            invokevirtual java.text.DigitList.isZero:()Z
            ifeq 2
         1: .line 790
            ldc "0"
            areturn
         2: .line 792
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.text.DigitList.getStringBuffer:()Ljava/lang/StringBuffer;
            astore 1 /* buf */
        start local 1 // java.lang.StringBuffer buf
         3: .line 793
            aload 1 /* buf */
            ldc "0."
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         4: .line 794
            aload 1 /* buf */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            iconst_0
            aload 0 /* this */
            getfield java.text.DigitList.count:I
            invokevirtual java.lang.StringBuffer.append:([CII)Ljava/lang/StringBuffer;
            pop
         5: .line 795
            aload 1 /* buf */
            ldc "x10^"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         6: .line 796
            aload 1 /* buf */
            aload 0 /* this */
            getfield java.text.DigitList.decimalAt:I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         7: .line 797
            aload 1 /* buf */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuffer buf
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/text/DigitList;
            3    8     1   buf  Ljava/lang/StringBuffer;

  private java.lang.StringBuffer getStringBuffer();
    descriptor: ()Ljava/lang/StringBuffer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.text.DigitList this
         0: .line 803
            aload 0 /* this */
            getfield java.text.DigitList.tempBuffer:Ljava/lang/StringBuffer;
            ifnonnull 3
         1: .line 804
            aload 0 /* this */
            new java.lang.StringBuffer
            dup
            bipush 19
            invokespecial java.lang.StringBuffer.<init>:(I)V
            putfield java.text.DigitList.tempBuffer:Ljava/lang/StringBuffer;
         2: .line 805
            goto 4
         3: .line 806
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.tempBuffer:Ljava/lang/StringBuffer;
            iconst_0
            invokevirtual java.lang.StringBuffer.setLength:(I)V
         4: .line 808
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.tempBuffer:Ljava/lang/StringBuffer;
            areturn
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/text/DigitList;

  private void extendDigits(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.text.DigitList this
        start local 1 // int len
         0: .line 812
            iload 1 /* len */
            aload 0 /* this */
            getfield java.text.DigitList.digits:[C
            arraylength
            if_icmple 2
         1: .line 813
            aload 0 /* this */
            iload 1 /* len */
            newarray 5
            putfield java.text.DigitList.digits:[C
         2: .line 815
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/text/DigitList;
            0    3     1   len  I
    MethodParameters:
      Name  Flags
      len   

  private final char[] getDataChars(int);
    descriptor: (I)[C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.text.DigitList this
        start local 1 // int length
         0: .line 818
            aload 0 /* this */
            getfield java.text.DigitList.data:[C
            ifnull 1
            aload 0 /* this */
            getfield java.text.DigitList.data:[C
            arraylength
            iload 1 /* length */
            if_icmpge 2
         1: .line 819
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* length */
            newarray 5
            putfield java.text.DigitList.data:[C
         2: .line 821
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.text.DigitList.data:[C
            areturn
        end local 1 // int length
        end local 0 // java.text.DigitList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljava/text/DigitList;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      length  

  static int[] $SWITCH_TABLE$java$math$RoundingMode();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 74
            getstatic java.text.DigitList.$SWITCH_TABLE$java$math$RoundingMode:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic java.math.RoundingMode.values:()[Ljava/math/RoundingMode;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic java.math.RoundingMode.CEILING:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic java.math.RoundingMode.DOWN:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iconst_2
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic java.math.RoundingMode.FLOOR:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iconst_4
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic java.math.RoundingMode.HALF_DOWN:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            bipush 6
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic java.math.RoundingMode.HALF_EVEN:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            bipush 7
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            getstatic java.math.RoundingMode.HALF_UP:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iconst_5
            iastore
        18: goto 20
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        19: pop
      StackMap locals:
      StackMap stack:
        20: aload 0
            getstatic java.math.RoundingMode.UNNECESSARY:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            bipush 8
            iastore
        21: goto 23
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        22: pop
      StackMap locals:
      StackMap stack:
        23: aload 0
            getstatic java.math.RoundingMode.UP:Ljava/math/RoundingMode;
            invokevirtual java.math.RoundingMode.ordinal:()I
            iconst_1
            iastore
        24: goto 26
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        25: pop
      StackMap locals:
      StackMap stack:
        26: aload 0
            dup
            putstatic java.text.DigitList.$SWITCH_TABLE$java$math$RoundingMode:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
          17    18      19  Class java.lang.NoSuchFieldError
          20    21      22  Class java.lang.NoSuchFieldError
          23    24      25  Class java.lang.NoSuchFieldError
}
SourceFile: "DigitList.java"
InnerClasses:
  public abstract BinaryToASCIIConverter = sun.misc.FloatingDecimal$BinaryToASCIIConverter of sun.misc.FloatingDecimal