public class org.eclipse.jdt.internal.compiler.impl.DoubleConstant extends org.eclipse.jdt.internal.compiler.impl.Constant
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.impl.DoubleConstant
  super_class: org.eclipse.jdt.internal.compiler.impl.Constant
{
  private double value;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  public static org.eclipse.jdt.internal.compiler.impl.Constant fromValue(double);
    descriptor: (D)Lorg/eclipse/jdt/internal/compiler/impl/Constant;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double value
         0: .line 21
            new org.eclipse.jdt.internal.compiler.impl.DoubleConstant
            dup
            dload 0 /* value */
            invokespecial org.eclipse.jdt.internal.compiler.impl.DoubleConstant.<init>:(D)V
            areturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  D
    MethodParameters:
       Name  Flags
      value  

  private void <init>(double);
    descriptor: (D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
        start local 1 // double value
         0: .line 24
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.compiler.impl.Constant.<init>:()V
         1: .line 25
            aload 0 /* this */
            dload 1 /* value */
            putfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
         2: .line 26
            return
        end local 1 // double value
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public byte byteValue();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 30
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2i
            i2b
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public char charValue();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 35
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2i
            i2c
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public double doubleValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            dreturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public float floatValue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 45
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2f
            freturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public int intValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 50
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2i
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public long longValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 55
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2l
            lreturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public short shortValue();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 60
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            d2i
            i2s
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public java.lang.String stringValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 65
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 70
            aload 0 /* this */
            getstatic org.eclipse.jdt.internal.compiler.impl.DoubleConstant.NotAConstant:Lorg/eclipse/jdt/internal/compiler/impl/Constant;
            if_acmpne 2
         1: .line 71
            ldc "(Constant) NotAConstant"
            areturn
         2: .line 72
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "(double)"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public int typeID();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 77
            bipush 8
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
         0: .line 82
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 1 /* temp */
        start local 1 // long temp
         1: .line 83
            lload 1 /* temp */
            lload 1 /* temp */
            bipush 32
            lushr
            lxor
            l2i
            ireturn
        end local 1 // long temp
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;
            1    2     1  temp  J

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
        start local 1 // java.lang.Object obj
         0: .line 88
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 89
            iconst_1
            ireturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 92
            iconst_0
            ireturn
         4: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 6
         5: .line 95
            iconst_0
            ireturn
         6: .line 97
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.jdt.internal.compiler.impl.DoubleConstant
            astore 2 /* other */
        start local 2 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant other
         7: .line 98
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 2 /* other */
            getfield org.eclipse.jdt.internal.compiler.impl.DoubleConstant.value:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 8
            iconst_1
            ireturn
      StackMap locals: org.eclipse.jdt.internal.compiler.impl.DoubleConstant
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.jdt.internal.compiler.impl.DoubleConstant this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;
            0    9     1    obj  Ljava/lang/Object;
            7    9     2  other  Lorg/eclipse/jdt/internal/compiler/impl/DoubleConstant;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "DoubleConstant.java"