public abstract class org.jruby.ir.operands.TemporaryVariable extends org.jruby.ir.operands.Variable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.ir.operands.TemporaryVariable
  super_class: org.jruby.ir.operands.Variable
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.TemporaryVariable this
         0: .line 7
            aload 0 /* this */
            invokespecial org.jruby.ir.operands.Variable.<init>:()V
         1: .line 8
            return
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ir/operands/TemporaryVariable;

  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.TemporaryVariable this
         0: .line 12
            getstatic org.jruby.ir.operands.OperandType.TEMPORARY_VARIABLE:Lorg/jruby/ir/operands/OperandType;
            areturn
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/TemporaryVariable;

  public abstract org.jruby.ir.operands.TemporaryVariableType getType();
    descriptor: ()Lorg/jruby/ir/operands/TemporaryVariableType;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.TemporaryVariable this
         0: .line 22
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ireturn
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/TemporaryVariable;

  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.TemporaryVariable this
        start local 1 // java.lang.Object other
         0: .line 27
            aload 1 /* other */
            ifnull 1
            aload 1 /* other */
            instanceof org.jruby.ir.operands.TemporaryVariable
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
         2: .line 29
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast org.jruby.ir.operands.TemporaryVariable
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/jruby/ir/operands/TemporaryVariable;
            0    3     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.TemporaryVariable this
        start local 1 // java.lang.Object other
         0: .line 34
            aload 1 /* other */
            instanceof org.jruby.ir.operands.TemporaryVariable
            ifne 1
            iconst_0
            ireturn
         1: .line 36
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            aload 1 /* other */
            checkcast org.jruby.ir.operands.TemporaryVariable
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            invokevirtual java.lang.String.compareTo:(Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jruby/ir/operands/TemporaryVariable;
            0    2     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  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.TemporaryVariable this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 41
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.TemporaryVariable:(Lorg/jruby/ir/operands/TemporaryVariable;)V
         1: .line 42
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/operands/TemporaryVariable;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  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.TemporaryVariable this
         0: .line 46
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.TemporaryVariable.getId:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ir.operands.TemporaryVariable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/TemporaryVariable;
}
SourceFile: "TemporaryVariable.java"