public class org.jruby.util.ConvertDouble$DoubleConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.util.ConvertDouble$DoubleConverter
  super_class: java.lang.Object
{
  private byte[] bytes;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

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

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

  private double result;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private static final int SIGNIFICANT_DIGITS_LIMIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 30

  private static final int EXPONENT_DIGITS_LIMIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private static final int MAX_EXPONENT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int MAX_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 39

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 59
            ldc 10.0
            ldc 3.0
            invokestatic java.lang.Math.pow:(DD)D
            d2i
            iconst_1
            isub
            putstatic org.jruby.util.ConvertDouble$DoubleConverter.MAX_EXPONENT:I
         1: .line 62
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  public void init(org.jruby.util.ByteList, boolean);
    descriptor: (Lorg/jruby/util/ByteList;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
        start local 1 // org.jruby.util.ByteList list
        start local 2 // boolean isStrict
         0: .line 67
            aload 0 /* this */
            aload 1 /* list */
            invokevirtual org.jruby.util.ByteList.getUnsafeBytes:()[B
            putfield org.jruby.util.ConvertDouble$DoubleConverter.bytes:[B
         1: .line 68
            aload 0 /* this */
            aload 1 /* list */
            invokevirtual org.jruby.util.ByteList.begin:()I
            putfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
         2: .line 69
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            aload 1 /* list */
            invokevirtual org.jruby.util.ByteList.length:()I
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.endIndex:I
         3: .line 70
            aload 0 /* this */
            iload 2 /* isStrict */
            putfield org.jruby.util.ConvertDouble$DoubleConverter.isStrict:Z
         4: .line 75
            aload 0 /* this */
            aload 1 /* list */
            invokevirtual org.jruby.util.ByteList.length:()I
            iconst_2
            iadd
            bipush 39
            invokestatic java.lang.Math.min:(II)I
            newarray 5
            putfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
         5: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
         6: .line 77
            aload 0 /* this */
            iconst_0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
         7: .line 78
            aload 0 /* this */
            iconst_0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
         8: .line 79
            aload 0 /* this */
            iconst_0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.wroteExponent:Z
         9: .line 80
            aload 0 /* this */
            ldc -1.0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
        10: .line 81
            return
        end local 2 // boolean isStrict
        end local 1 // org.jruby.util.ByteList list
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            0   11     1      list  Lorg/jruby/util/ByteList;
            0   11     2  isStrict  Z
    MethodParameters:
          Name  Flags
      list      
      isStrict  

  private byte next();
    descriptor: ()B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 84
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.bytes:[B
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            dup_x1
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            baload
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  private boolean previous();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 92
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            iconst_1
            isub
            putfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
         1: .line 93
            iconst_0
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  private boolean isEOS();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 97
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.endIndex:I
            if_icmplt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  private boolean stopParsing();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 101
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.endIndex:I
            putfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
         1: .line 102
            iconst_1
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  private static boolean isDigit(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 106
            iload 0 /* b */
            bipush 48
            if_icmplt 1
            iload 0 /* b */
            bipush 57
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     b  B
    MethodParameters:
      Name  Flags
      b     

  private static boolean isExponent(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 110
            iload 0 /* b */
            bipush 101
            if_icmpeq 1
            iload 0 /* b */
            bipush 69
            if_icmpeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     b  B
    MethodParameters:
      Name  Flags
      b     

  private static boolean isWhitespace(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 114
            iload 0 /* b */
            bipush 32
            if_icmpeq 2
            iload 0 /* b */
            bipush 13
            if_icmpgt 1
            iload 0 /* b */
            bipush 9
            if_icmplt 1
            iload 0 /* b */
            bipush 11
            if_icmpne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     b  B
    MethodParameters:
      Name  Flags
      b     

  private void addToResult(byte);
    descriptor: (B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
        start local 1 // byte b
         0: .line 118
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            dup_x1
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            iload 1 /* b */
            i2c
            castore
         1: .line 119
            return
        end local 1 // byte b
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            0    2     1     b  B
    MethodParameters:
      Name  Flags
      b     

  private void addExponentToResult(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
        start local 1 // int exponent
         0: .line 122
            iload 1 /* exponent */
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            astore 2 /* exp */
        start local 2 // java.lang.String exp
         1: .line 123
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 124
      StackMap locals: java.lang.String int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* exp */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            i2b
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
         4: .line 123
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 2 /* exp */
            invokevirtual java.lang.String.length:()I
            if_icmplt 3
        end local 3 // int i
         6: .line 126
            return
        end local 2 // java.lang.String exp
        end local 1 // int exponent
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            0    7     1  exponent  I
            1    7     2       exp  Ljava/lang/String;
            2    6     3         i  I
    MethodParameters:
          Name  Flags
      exponent  

  private boolean eatUnderscores();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 129
            goto 7
         1: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
         2: .line 132
            iload 1 /* value */
            bipush 95
            if_icmpeq 5
         3: .line 133
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.previous:()Z
            pop
         4: .line 134
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ireturn
         5: .line 135
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.isStrict:Z
            ifeq 7
         6: .line 136
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
        end local 1 // byte value
         7: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 1
         8: .line 140
            iconst_1
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            2    7     1  value  B

  private double completeCalculation();
    descriptor: ()D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 144
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            ifeq 1
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            iconst_1
            if_icmpne 3
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            iconst_0
            caload
            bipush 45
            if_icmpne 3
         1: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
         2: .line 146
            dconst_0
            dreturn
         3: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            iconst_1
            isub
            caload
            i2b
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isExponent:(B)Z
            ifeq 7
         4: .line 148
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
         5: .line 149
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addExponentToResult:(I)V
         6: .line 150
            goto 13
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.isStrict:Z
            ifeq 10
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifne 10
         8: .line 151
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
         9: .line 152
            goto 13
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.wroteExponent:Z
            ifne 13
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            ifeq 13
        11: .line 153
            aload 0 /* this */
            bipush 69
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        12: .line 154
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addExponentToResult:(I)V
        13: .line 157
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            iconst_0
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.charsIndex:I
            invokespecial java.lang.String.<init>:([CII)V
            invokestatic org.jruby.util.SafeDoubleParser.parseDouble:(Ljava/lang/String;)Ljava/lang/Double;
            invokevirtual java.lang.Double.doubleValue:()D
            dreturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  private boolean strictError();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 171
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.isStrict:Z
            ifeq 2
         1: .line 172
            new org.jruby.util.ConvertDouble$DoubleConverter$LightweightNumberFormatException
            dup
            ldc "does not meet strict criteria"
            invokespecial org.jruby.util.ConvertDouble$DoubleConverter$LightweightNumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 174
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;

  public double parse(org.jruby.util.ByteList, boolean, boolean);
    descriptor: (Lorg/jruby/util/ByteList;ZZ)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
        start local 1 // org.jruby.util.ByteList list
        start local 2 // boolean strict
        start local 3 // boolean is19
         0: .line 184
            aload 0 /* this */
            aload 1 /* list */
            iload 2 /* strict */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.init:(Lorg/jruby/util/ByteList;Z)V
         1: .line 186
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.skipWhitespace:()Z
            ifeq 2
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.completeCalculation:()D
            dreturn
         2: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseOptionalSign:()Z
            ifeq 3
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.completeCalculation:()D
            dreturn
         3: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseDigits:()Z
            pop
         4: .line 191
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
            ldc -1.0
            dcmpl
            ifeq 6
         5: .line 192
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
            dreturn
         6: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.completeCalculation:()D
            dreturn
        end local 3 // boolean is19
        end local 2 // boolean strict
        end local 1 // org.jruby.util.ByteList list
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            0    7     1    list  Lorg/jruby/util/ByteList;
            0    7     2  strict  Z
            0    7     3    is19  Z
    MethodParameters:
        Name  Flags
      list    
      strict  
      is19    

  private boolean skipWhitespace();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 207
            goto 4
         1: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
         2: .line 210
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isWhitespace:(B)Z
            ifeq 3
            goto 4
         3: .line 211
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.previous:()Z
            ireturn
        end local 1 // byte value
         4: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 1
         5: .line 214
            iconst_1
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            2    4     1  value  B

  private boolean parseOptionalSign();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 218
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* sign */
        start local 1 // byte sign
         1: .line 220
            iload 1 /* sign */
            bipush 45
            if_icmpne 4
         2: .line 221
            aload 0 /* this */
            iload 1 /* sign */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
         3: .line 222
            goto 6
      StackMap locals: int
      StackMap stack:
         4: iload 1 /* sign */
            bipush 43
            if_icmpeq 6
         5: .line 223
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.previous:()Z
            pop
         6: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ireturn
        end local 1 // byte sign
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            1    7     1  sign  B

  private boolean parseDigits();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 230
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifne 11
         1: .line 231
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
         2: .line 233
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifeq 7
         3: .line 235
            iload 1 /* value */
            bipush 48
            if_icmpeq 5
         4: .line 236
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
         5: .line 238
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
         6: .line 239
            goto 34
      StackMap locals:
      StackMap stack:
         7: iload 1 /* value */
            bipush 46
            if_icmpne 10
         8: .line 240
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
         9: .line 241
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseDecimalDigits:()Z
            ireturn
        10: .line 243
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ireturn
        end local 1 // byte value
        11: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
        12: .line 249
            goto 34
        13: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
        14: .line 252
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifeq 22
        15: .line 253
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            bipush 30
            if_icmpge 20
        16: .line 255
            iload 1 /* value */
            bipush 48
            if_icmpne 17
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            ifle 34
        17: .line 256
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
        18: .line 257
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        19: .line 259
            goto 34
        20: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
        21: .line 262
            goto 34
      StackMap locals:
      StackMap stack:
        22: iload 1 /* value */
            bipush 46
            if_icmpne 25
        23: .line 263
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        24: .line 264
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseDecimalDigits:()Z
            ireturn
        25: .line 265
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            bipush 95
            if_icmpne 28
        26: .line 266
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.verifyNumberAfterUnderscore:()V
        27: .line 267
            goto 34
      StackMap locals:
      StackMap stack:
        28: iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isExponent:(B)Z
            ifeq 31
        29: .line 268
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        30: .line 269
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseExponent:()Z
            ireturn
        31: .line 270
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isWhitespace:(B)Z
            ifeq 33
        32: .line 271
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.skipWhitespace:()Z
            ireturn
        33: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            ireturn
        end local 1 // byte value
        34: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 13
        35: .line 278
            iconst_1
            ireturn
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   36     0   this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            2   11     1  value  B
           14   34     1  value  B

  private boolean parseDecimalDigits();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 282
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 1
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            ireturn
         1: .line 284
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
         2: .line 287
            iload 1 /* value */
            bipush 95
            if_icmpne 6
         3: .line 288
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
         4: .line 289
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 5
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            ireturn
         5: .line 290
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
         6: .line 293
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifeq 14
         7: .line 294
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            bipush 30
            if_icmpge 11
         8: .line 295
            iload 1 /* value */
            bipush 48
            if_icmpne 9
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            ifeq 12
         9: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
        10: .line 298
            goto 12
        11: .line 299
      StackMap locals:
      StackMap stack:
            bipush 48
            istore 1 /* value */
        12: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        13: .line 303
            goto 33
        14: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            ireturn
        15: .line 308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        16: .line 310
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifeq 24
        17: .line 311
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            bipush 30
            if_icmpge 33
        18: .line 312
            iload 1 /* value */
            bipush 48
            if_icmpne 21
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            ifne 21
        19: .line 313
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            iconst_1
            isub
            putfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
        20: .line 314
            goto 33
        21: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
            iconst_1
            iadd
            putfield org.jruby.util.ConvertDouble$DoubleConverter.significantDigitsProcessed:I
        22: .line 316
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        23: .line 319
            goto 33
      StackMap locals:
      StackMap stack:
        24: iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isExponent:(B)Z
            ifeq 27
        25: .line 320
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addToResult:(B)V
        26: .line 321
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.parseExponent:()Z
            ireturn
        27: .line 322
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            bipush 95
            if_icmpne 30
        28: .line 323
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.verifyNumberAfterUnderscore:()V
        29: .line 324
            goto 33
      StackMap locals:
      StackMap stack:
        30: iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isWhitespace:(B)Z
            ifeq 32
        31: .line 325
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.skipWhitespace:()Z
            ireturn
        32: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            ireturn
        33: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 15
        34: .line 331
            iconst_1
            ireturn
        end local 1 // byte value
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   35     0   this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            2   35     1  value  B

  private boolean parseExponent();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 335
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.eatUnderscores:()Z
            ifeq 1
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ireturn
         1: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        start local 1 // byte value
         2: .line 339
            iconst_0
            istore 2 /* exponent */
        start local 2 // int exponent
         3: .line 340
            iconst_0
            istore 3 /* digits */
        start local 3 // int digits
         4: .line 341
            iconst_0
            istore 4 /* negative */
        start local 4 // boolean negative
         5: .line 343
            iload 1 /* value */
            bipush 45
            if_icmpne 8
         6: .line 344
            iconst_1
            istore 4 /* negative */
         7: .line 345
            goto 30
      StackMap locals: org.jruby.util.ConvertDouble$DoubleConverter int int int int
      StackMap stack:
         8: iload 1 /* value */
            bipush 43
            if_icmpeq 30
         9: .line 346
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.previous:()Z
            pop
        10: .line 349
            goto 30
        11: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.next:()B
            istore 1 /* value */
        12: .line 352
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifeq 21
        13: .line 353
            iload 3 /* digits */
            iconst_3
            if_icmpge 18
        14: .line 355
            iload 1 /* value */
            bipush 48
            if_icmpne 15
            iload 3 /* digits */
            ifle 30
        15: .line 356
      StackMap locals:
      StackMap stack:
            iinc 3 /* digits */ 1
        16: .line 357
            bipush 10
            iload 2 /* exponent */
            imul
            iload 1 /* value */
            bipush 48
            isub
            iadd
            istore 2 /* exponent */
        17: .line 359
            goto 30
        18: .line 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            iconst_0
            caload
            bipush 45
            if_icmpne 19
            iconst_1
            goto 20
      StackMap locals:
      StackMap stack: org.jruby.util.ConvertDouble$DoubleConverter
        19: iconst_0
      StackMap locals: org.jruby.util.ConvertDouble$DoubleConverter int int int int
      StackMap stack: org.jruby.util.ConvertDouble$DoubleConverter int
        20: iload 4 /* negative */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.tooLargeExponent:(ZZ)Z
            ireturn
        21: .line 362
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isWhitespace:(B)Z
            ifeq 24
        22: .line 363
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.skipWhitespace:()Z
            pop
        23: .line 364
            goto 31
        24: .line 365
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            bipush 95
            if_icmpne 27
        25: .line 366
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.verifyNumberAfterUnderscore:()V
        26: .line 367
            goto 30
        27: .line 368
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
        28: .line 369
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.stopParsing:()Z
            pop
        29: .line 370
            goto 31
        30: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifeq 11
        31: .line 374
      StackMap locals:
      StackMap stack:
            iload 4 /* negative */
            ifeq 33
        32: .line 375
            iload 2 /* exponent */
            ineg
            istore 2 /* exponent */
        33: .line 378
      StackMap locals:
      StackMap stack:
            iload 2 /* exponent */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.adjustExponent:I
            iadd
            istore 2 /* exponent */
        34: .line 380
            getstatic org.jruby.util.ConvertDouble$DoubleConverter.MAX_EXPONENT:I
            ineg
            iload 2 /* exponent */
            if_icmpgt 38
            iload 2 /* exponent */
            getstatic org.jruby.util.ConvertDouble$DoubleConverter.MAX_EXPONENT:I
            if_icmpgt 38
        35: .line 381
            aload 0 /* this */
            iload 2 /* exponent */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.addExponentToResult:(I)V
        36: .line 382
            aload 0 /* this */
            iconst_1
            putfield org.jruby.util.ConvertDouble$DoubleConverter.wroteExponent:Z
        37: .line 383
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ireturn
        38: .line 385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.chars:[C
            iconst_0
            caload
            bipush 45
            if_icmpne 39
            iconst_1
            goto 40
      StackMap locals:
      StackMap stack: org.jruby.util.ConvertDouble$DoubleConverter
        39: iconst_0
      StackMap locals: org.jruby.util.ConvertDouble$DoubleConverter int int int int
      StackMap stack: org.jruby.util.ConvertDouble$DoubleConverter int
        40: iload 4 /* negative */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.tooLargeExponent:(ZZ)Z
            ireturn
        end local 4 // boolean negative
        end local 3 // int digits
        end local 2 // int exponent
        end local 1 // byte value
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   41     0      this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            2   41     1     value  B
            3   41     2  exponent  I
            4   41     3    digits  I
            5   41     4  negative  Z

  private boolean tooLargeExponent(boolean, boolean);
    descriptor: (ZZ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
        start local 1 // boolean negativeFloat
        start local 2 // boolean negativeExponent
         0: .line 390
            iload 2 /* negativeExponent */
            ifeq 6
         1: .line 391
            iload 1 /* negativeFloat */
            ifeq 4
         2: .line 392
            aload 0 /* this */
            ldc -0.0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
         3: .line 393
            goto 10
         4: .line 394
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dconst_0
            putfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
         5: .line 396
            goto 10
         6: .line 397
      StackMap locals:
      StackMap stack:
            iload 1 /* negativeFloat */
            ifeq 9
         7: .line 398
            aload 0 /* this */
            ldc -Infinity
            putfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
         8: .line 399
            goto 10
         9: .line 400
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc Infinity
            putfield org.jruby.util.ConvertDouble$DoubleConverter.result:D
        10: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.stopParsing:()Z
            ireturn
        end local 2 // boolean negativeExponent
        end local 1 // boolean negativeFloat
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
            0   11     1     negativeFloat  Z
            0   11     2  negativeExponent  Z
    MethodParameters:
                  Name  Flags
      negativeFloat     
      negativeExponent  

  private void verifyNumberAfterUnderscore();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
         0: .line 407
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.isStrict:Z
            ifeq 2
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.isEOS:()Z
            ifne 1
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.bytes:[B
            aload 0 /* this */
            getfield org.jruby.util.ConvertDouble$DoubleConverter.index:I
            baload
            invokestatic org.jruby.util.ConvertDouble$DoubleConverter.isDigit:(B)Z
            ifne 2
         1: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.util.ConvertDouble$DoubleConverter.strictError:()Z
            pop
         2: .line 410
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.jruby.util.ConvertDouble$DoubleConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/util/ConvertDouble$DoubleConverter;
}
SourceFile: "ConvertDouble.java"
NestHost: org.jruby.util.ConvertDouble
InnerClasses:
  public DoubleConverter = org.jruby.util.ConvertDouble$DoubleConverter of org.jruby.util.ConvertDouble
  LightweightNumberFormatException = org.jruby.util.ConvertDouble$DoubleConverter$LightweightNumberFormatException of org.jruby.util.ConvertDouble$DoubleConverter