public class org.jruby.ir.operands.Splat extends org.jruby.ir.operands.Operand implements org.jruby.ir.operands.DepthCloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.operands.Splat
  super_class: org.jruby.ir.operands.Operand
{
  private final org.jruby.ir.operands.Operand array;
    descriptor: Lorg/jruby/ir/operands/Operand;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.jruby.ir.operands.Operand);
    descriptor: (Lorg/jruby/ir/operands/Operand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // org.jruby.ir.operands.Operand array
         0: .line 23
            aload 0 /* this */
            invokespecial org.jruby.ir.operands.Operand.<init>:()V
         1: .line 24
            aload 0 /* this */
            aload 1 /* array */
            putfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
         2: .line 25
            return
        end local 1 // org.jruby.ir.operands.Operand array
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/jruby/ir/operands/Splat;
            0    3     1  array  Lorg/jruby/ir/operands/Operand;
    MethodParameters:
       Name  Flags
      array  

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

  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.jruby.ir.operands.Splat this
         0: .line 34
            new java.lang.StringBuilder
            dup
            ldc "*(unsplat)"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Splat;

  public boolean hasKnownValue();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Splat this
         0: .line 39
            iconst_0
            ireturn
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Splat;

  public org.jruby.ir.operands.Operand getArray();
    descriptor: ()Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.operands.Splat this
         0: .line 43
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            areturn
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/operands/Splat;

  public org.jruby.ir.operands.Operand getSimplifiedOperand(java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>, boolean);
    descriptor: (Ljava/util/Map;Z)Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // java.util.Map valueMap
        start local 2 // boolean force
         0: .line 48
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            aload 1 /* valueMap */
            iload 2 /* force */
            invokevirtual org.jruby.ir.operands.Operand.getSimplifiedOperand:(Ljava/util/Map;Z)Lorg/jruby/ir/operands/Operand;
            astore 3 /* newArray */
        start local 3 // org.jruby.ir.operands.Operand newArray
         1: .line 49
            aload 3 /* newArray */
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            if_acmpne 2
            aload 0 /* this */
            goto 3
      StackMap locals: org.jruby.ir.operands.Operand
      StackMap stack:
         2: new org.jruby.ir.operands.Splat
            dup
            aload 3 /* newArray */
            invokespecial org.jruby.ir.operands.Splat.<init>:(Lorg/jruby/ir/operands/Operand;)V
      StackMap locals:
      StackMap stack: org.jruby.ir.operands.Splat
         3: areturn
        end local 3 // org.jruby.ir.operands.Operand newArray
        end local 2 // boolean force
        end local 1 // java.util.Map valueMap
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/jruby/ir/operands/Splat;
            0    4     1  valueMap  Ljava/util/Map<Lorg/jruby/ir/operands/Operand;Lorg/jruby/ir/operands/Operand;>;
            0    4     2     force  Z
            1    4     3  newArray  Lorg/jruby/ir/operands/Operand;
    Signature: (Ljava/util/Map<Lorg/jruby/ir/operands/Operand;Lorg/jruby/ir/operands/Operand;>;Z)Lorg/jruby/ir/operands/Operand;
    MethodParameters:
          Name  Flags
      valueMap  
      force     

  public void addUsedVariables(java.util.List<org.jruby.ir.operands.Variable>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // java.util.List l
         0: .line 55
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            aload 1 /* l */
            invokevirtual org.jruby.ir.operands.Operand.addUsedVariables:(Ljava/util/List;)V
         1: .line 56
            return
        end local 1 // java.util.List l
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ir/operands/Splat;
            0    2     1     l  Ljava/util/List<Lorg/jruby/ir/operands/Variable;>;
    Signature: (Ljava/util/List<Lorg/jruby/ir/operands/Variable;>;)V
    MethodParameters:
      Name  Flags
      l     

  public org.jruby.ir.operands.Operand cloneForDepth(int);
    descriptor: (I)Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // int n
         0: .line 60
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            instanceof org.jruby.ir.operands.LocalVariable
            ifeq 1
            new org.jruby.ir.operands.Splat
            dup
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            checkcast org.jruby.ir.operands.LocalVariable
            iload 1 /* n */
            invokevirtual org.jruby.ir.operands.LocalVariable.cloneForDepth:(I)Lorg/jruby/ir/operands/LocalVariable;
            invokespecial org.jruby.ir.operands.Splat.<init>:(Lorg/jruby/ir/operands/Operand;)V
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
      StackMap locals:
      StackMap stack: org.jruby.ir.operands.Splat
         2: areturn
        end local 1 // int n
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/Splat;
            0    3     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public org.jruby.ir.operands.Operand cloneForInlining(org.jruby.ir.transformations.inlining.CloneInfo);
    descriptor: (Lorg/jruby/ir/transformations/inlining/CloneInfo;)Lorg/jruby/ir/operands/Operand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
         0: .line 65
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.Splat.hasKnownValue:()Z
            ifeq 1
            aload 0 /* this */
            goto 2
      StackMap locals:
      StackMap stack:
         1: new org.jruby.ir.operands.Splat
            dup
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            aload 1 /* ii */
            invokevirtual org.jruby.ir.operands.Operand.cloneForInlining:(Lorg/jruby/ir/transformations/inlining/CloneInfo;)Lorg/jruby/ir/operands/Operand;
            invokespecial org.jruby.ir.operands.Splat.<init>:(Lorg/jruby/ir/operands/Operand;)V
      StackMap locals:
      StackMap stack: org.jruby.ir.operands.Splat
         2: areturn
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/Splat;
            0    3     1    ii  Lorg/jruby/ir/transformations/inlining/CloneInfo;
    MethodParameters:
      Name  Flags
      ii    

  public java.lang.Object retrieve(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.parser.StaticScope, org.jruby.runtime.DynamicScope, java.lang.Object[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/parser/StaticScope;Lorg/jruby/runtime/DynamicScope;[Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // org.jruby.ir.operands.Splat this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject self
        start local 3 // org.jruby.parser.StaticScope currScope
        start local 4 // org.jruby.runtime.DynamicScope currDynScope
        start local 5 // java.lang.Object[] temp
         0: .line 84
            aload 0 /* this */
            getfield org.jruby.ir.operands.Splat.array:Lorg/jruby/ir/operands/Operand;
            aload 1 /* context */
            aload 2 /* self */
            aload 3 /* currScope */
            aload 4 /* currDynScope */
            aload 5 /* temp */
            invokevirtual org.jruby.ir.operands.Operand.retrieve:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/parser/StaticScope;Lorg/jruby/runtime/DynamicScope;[Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 5 // java.lang.Object[] temp
        end local 4 // org.jruby.runtime.DynamicScope currDynScope
        end local 3 // org.jruby.parser.StaticScope currScope
        end local 2 // org.jruby.runtime.builtin.IRubyObject self
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/jruby/ir/operands/Splat;
            0    1     1       context  Lorg/jruby/runtime/ThreadContext;
            0    1     2          self  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3     currScope  Lorg/jruby/parser/StaticScope;
            0    1     4  currDynScope  Lorg/jruby/runtime/DynamicScope;
            0    1     5          temp  [Ljava/lang/Object;
    MethodParameters:
              Name  Flags
      context       
      self          
      currScope     
      currDynScope  
      temp          

  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.Splat this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 89
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.operands.Operand.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 90
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.operands.Splat.getArray:()Lorg/jruby/ir/operands/Operand;
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Lorg/jruby/ir/operands/Operand;)V
         2: .line 91
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.operands.Splat this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/operands/Splat;
            0    3     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.operands.Splat decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/operands/Splat;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 94
            new org.jruby.ir.operands.Splat
            dup
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeOperand:()Lorg/jruby/ir/operands/Operand;
            invokespecial org.jruby.ir.operands.Splat.<init>:(Lorg/jruby/ir/operands/Operand;)V
            areturn
        end local 0 // org.jruby.ir.persistence.IRReaderDecoder d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     d  Lorg/jruby/ir/persistence/IRReaderDecoder;
    MethodParameters:
      Name  Flags
      d     

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