public class org.jruby.ir.operands.UnboxedBoolean extends org.jruby.ir.operands.ImmutableLiteral
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.operands.UnboxedBoolean
  super_class: org.jruby.ir.operands.ImmutableLiteral
{
  private final boolean truthy;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static final org.jruby.ir.operands.UnboxedBoolean TRUE;
    descriptor: Lorg/jruby/ir/operands/UnboxedBoolean;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.jruby.ir.operands.UnboxedBoolean FALSE;
    descriptor: Lorg/jruby/ir/operands/UnboxedBoolean;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 11
            new org.jruby.ir.operands.UnboxedBoolean
            dup
            iconst_1
            invokespecial org.jruby.ir.operands.UnboxedBoolean.<init>:(Z)V
            putstatic org.jruby.ir.operands.UnboxedBoolean.TRUE:Lorg/jruby/ir/operands/UnboxedBoolean;
         1: .line 12
            new org.jruby.ir.operands.UnboxedBoolean
            dup
            iconst_0
            invokespecial org.jruby.ir.operands.UnboxedBoolean.<init>:(Z)V
            putstatic org.jruby.ir.operands.UnboxedBoolean.FALSE:Lorg/jruby/ir/operands/UnboxedBoolean;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
        start local 1 // boolean truthy
         0: .line 15
            aload 0 /* this */
            invokespecial org.jruby.ir.operands.ImmutableLiteral.<init>:()V
         1: .line 17
            aload 0 /* this */
            iload 1 /* truthy */
            putfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
         2: .line 18
            return
        end local 1 // boolean truthy
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/jruby/ir/operands/UnboxedBoolean;
            0    3     1  truthy  Z
    MethodParameters:
        Name  Flags
      truthy  

  public org.jruby.ir.operands.OperandType getOperandType();
    descriptor: ()Lorg/jruby/ir/operands/OperandType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 22
            getstatic org.jruby.ir.operands.OperandType.UNBOXED_BOOLEAN:Lorg/jruby/ir/operands/OperandType;
            areturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;

  public java.lang.Object createCacheObject(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 27
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.UnboxedBoolean.isTrue:()Z
            invokevirtual org.jruby.Ruby.newBoolean:(Z)Lorg/jruby/RubyBoolean;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ir/operands/UnboxedBoolean;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    MethodParameters:
         Name  Flags
      context  

  public boolean isTrue();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 31
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            ireturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;

  public boolean isFalse();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 35
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;

  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.jruby.ir.operands.UnboxedBoolean this
        start local 1 // java.lang.Object other
         0: .line 40
            aload 1 /* other */
            instanceof org.jruby.ir.operands.UnboxedBoolean
            ifeq 1
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            aload 1 /* other */
            checkcast org.jruby.ir.operands.UnboxedBoolean
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jruby/ir/operands/UnboxedBoolean;
            0    2     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 45
            sipush 287
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: org.jruby.ir.operands.UnboxedBoolean
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;

  public void visit(org.jruby.ir.IRVisitor);
    descriptor: (Lorg/jruby/ir/IRVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 50
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.UnboxedBoolean:(Lorg/jruby/ir/operands/UnboxedBoolean;)V
         1: .line 51
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/operands/UnboxedBoolean;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public void encode(org.jruby.ir.persistence.IRWriterEncoder);
    descriptor: (Lorg/jruby/ir/persistence/IRWriterEncoder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 55
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.operands.ImmutableLiteral.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 56
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Z)V
         2: .line 57
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;
            0    3     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.operands.UnboxedBoolean decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/operands/UnboxedBoolean;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 60
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeBoolean:()Z
            ifeq 1
            getstatic org.jruby.ir.operands.UnboxedBoolean.TRUE:Lorg/jruby/ir/operands/UnboxedBoolean;
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic org.jruby.ir.operands.UnboxedBoolean.FALSE:Lorg/jruby/ir/operands/UnboxedBoolean;
      StackMap locals:
      StackMap stack: org.jruby.ir.operands.UnboxedBoolean
         2: areturn
        end local 0 // org.jruby.ir.persistence.IRReaderDecoder d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     d  Lorg/jruby/ir/persistence/IRReaderDecoder;
    MethodParameters:
      Name  Flags
      d     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 65
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.UnboxedBoolean.isTrue:()Z
            ifeq 1
            ldc "true"
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc "false"
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;

  public boolean isTruthyImmediate();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.UnboxedBoolean this
         0: .line 70
            aload 0 /* this */
            getfield org.jruby.ir.operands.UnboxedBoolean.truthy:Z
            ireturn
        end local 0 // org.jruby.ir.operands.UnboxedBoolean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/UnboxedBoolean;
}
SourceFile: "UnboxedBoolean.java"