public class org.eclipse.jdt.internal.compiler.impl.BooleanConstant 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.BooleanConstant
  super_class: org.eclipse.jdt.internal.compiler.impl.Constant
{
  private boolean value;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private static final org.eclipse.jdt.internal.compiler.impl.BooleanConstant TRUE;
    descriptor: Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.eclipse.jdt.internal.compiler.impl.BooleanConstant FALSE;
    descriptor: Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 20
            new org.eclipse.jdt.internal.compiler.impl.BooleanConstant
            dup
            iconst_1
            invokespecial org.eclipse.jdt.internal.compiler.impl.BooleanConstant.<init>:(Z)V
            putstatic org.eclipse.jdt.internal.compiler.impl.BooleanConstant.TRUE:Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
         1: .line 21
            new org.eclipse.jdt.internal.compiler.impl.BooleanConstant
            dup
            iconst_0
            invokespecial org.eclipse.jdt.internal.compiler.impl.BooleanConstant.<init>:(Z)V
            putstatic org.eclipse.jdt.internal.compiler.impl.BooleanConstant.FALSE:Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.eclipse.jdt.internal.compiler.impl.Constant fromValue(boolean);
    descriptor: (Z)Lorg/eclipse/jdt/internal/compiler/impl/Constant;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // boolean value
         0: .line 24
            iload 0 /* value */
            ifeq 1
            getstatic org.eclipse.jdt.internal.compiler.impl.BooleanConstant.TRUE:Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic org.eclipse.jdt.internal.compiler.impl.BooleanConstant.FALSE:Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
      StackMap locals:
      StackMap stack: org.eclipse.jdt.internal.compiler.impl.BooleanConstant
         2: areturn
        end local 0 // boolean value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  value  Z
    MethodParameters:
       Name  Flags
      value  

  private void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
        start local 1 // boolean value
         0: .line 27
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.compiler.impl.Constant.<init>:()V
         1: .line 28
            aload 0 /* this */
            iload 1 /* value */
            putfield org.eclipse.jdt.internal.compiler.impl.BooleanConstant.value:Z
         2: .line 29
            return
        end local 1 // boolean value
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
            0    3     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  public boolean booleanValue();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
         0: .line 33
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.BooleanConstant.value:Z
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;

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

  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.BooleanConstant this
         0: .line 44
            new java.lang.StringBuilder
            dup
            ldc "(boolean)"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.BooleanConstant.value:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;

  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.BooleanConstant this
         0: .line 49
            iconst_5
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
         0: .line 54
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.impl.BooleanConstant.value:Z
            ifeq 1
            sipush 1231
            goto 2
      StackMap locals:
      StackMap stack:
         1: sipush 1237
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
        start local 1 // java.lang.Object obj
         0: .line 59
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 60
            iconst_1
            ireturn
         2: .line 62
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 63
            iconst_0
            ireturn
         4: .line 65
      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 66
            iconst_0
            ireturn
         6: .line 69
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.jdt.internal.compiler.impl.BooleanConstant this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jdt/internal/compiler/impl/BooleanConstant;
            0    7     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "BooleanConstant.java"