public class org.jruby.ir.instructions.LineNumberInstr extends org.jruby.ir.instructions.NoOperandInstr implements org.jruby.ir.instructions.FixedArityInstr
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.instructions.LineNumberInstr
  super_class: org.jruby.ir.instructions.NoOperandInstr
{
  public final int lineNumber;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.instructions.LineNumberInstr this
        start local 1 // int lineNumber
         0: .line 14
            aload 0 /* this */
            getstatic org.jruby.ir.Operation.LINE_NUM:Lorg/jruby/ir/Operation;
            invokespecial org.jruby.ir.instructions.NoOperandInstr.<init>:(Lorg/jruby/ir/Operation;)V
         1: .line 16
            aload 0 /* this */
            iload 1 /* lineNumber */
            putfield org.jruby.ir.instructions.LineNumberInstr.lineNumber:I
         2: .line 17
            return
        end local 1 // int lineNumber
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/jruby/ir/instructions/LineNumberInstr;
            0    3     1  lineNumber  I
    MethodParameters:
            Name  Flags
      lineNumber  

  public int getLineNumber();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.LineNumberInstr this
         0: .line 20
            aload 0 /* this */
            getfield org.jruby.ir.instructions.LineNumberInstr.lineNumber:I
            ireturn
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/LineNumberInstr;

  public java.lang.String[] toStringNonOperandArgs();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.LineNumberInstr this
         0: .line 25
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            new java.lang.StringBuilder
            dup
            ldc "n: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.LineNumberInstr.lineNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            areturn
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/LineNumberInstr;

  public org.jruby.ir.instructions.Instr clone(org.jruby.ir.transformations.inlining.CloneInfo);
    descriptor: (Lorg/jruby/ir/transformations/inlining/CloneInfo;)Lorg/jruby/ir/instructions/Instr;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.ir.instructions.LineNumberInstr this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
         0: .line 32
            aload 1 /* ii */
            instanceof org.jruby.ir.transformations.inlining.InlineCloneInfo
            ifeq 2
         1: .line 33
            new org.jruby.ir.instructions.InlinedLineNumberInstr
            aload 1 /* ii */
            checkcast org.jruby.ir.transformations.inlining.InlineCloneInfo
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getScopeBeingInlined:()Lorg/jruby/ir/IRScope;
            aload 0 /* this */
            getfield org.jruby.ir.instructions.LineNumberInstr.lineNumber:I
            invokespecial org.jruby.ir.instructions.InlinedLineNumberInstr.<init>:(Lorg/jruby/ir/IRScope;I)V
         2: .line 38
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo ii
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/instructions/LineNumberInstr;
            0    3     1    ii  Lorg/jruby/ir/transformations/inlining/CloneInfo;
    MethodParameters:
      Name  Flags
      ii    

  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.instructions.LineNumberInstr this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 43
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.instructions.NoOperandInstr.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 44
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.LineNumberInstr.getLineNumber:()I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         2: .line 45
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ir/instructions/LineNumberInstr;
            0    3     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.instructions.LineNumberInstr decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/instructions/LineNumberInstr;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 48
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.getCurrentScope:()Lorg/jruby/ir/IRScope;
            invokevirtual org.jruby.ir.IRScope.getManager:()Lorg/jruby/ir/IRManager;
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            invokevirtual org.jruby.ir.IRManager.newLineNumber:(I)Lorg/jruby/ir/instructions/LineNumberInstr;
            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.instructions.LineNumberInstr this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 53
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.LineNumberInstr:(Lorg/jruby/ir/instructions/LineNumberInstr;)V
         1: .line 54
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.instructions.LineNumberInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/instructions/LineNumberInstr;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  
}
SourceFile: "LineNumberInstr.java"