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

  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.instructions.ToggleBacktraceInstr this
        start local 1 // boolean requiresBacktrace
         0: .line 26
            aload 0 /* this */
            getstatic org.jruby.ir.Operation.TOGGLE_BACKTRACE:Lorg/jruby/ir/Operation;
            invokespecial org.jruby.ir.instructions.NoOperandInstr.<init>:(Lorg/jruby/ir/Operation;)V
         1: .line 28
            aload 0 /* this */
            iload 1 /* requiresBacktrace */
            putfield org.jruby.ir.instructions.ToggleBacktraceInstr.requiresBacktrace:Z
         2: .line 29
            return
        end local 1 // boolean requiresBacktrace
        end local 0 // org.jruby.ir.instructions.ToggleBacktraceInstr this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lorg/jruby/ir/instructions/ToggleBacktraceInstr;
            0    3     1  requiresBacktrace  Z
    MethodParameters:
                   Name  Flags
      requiresBacktrace  

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

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

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

  public static org.jruby.ir.instructions.ToggleBacktraceInstr decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/instructions/ToggleBacktraceInstr;
    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 46
            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.decodeBoolean:()Z
            invokevirtual org.jruby.ir.IRManager.needsBacktrace:(Z)Lorg/jruby/ir/instructions/ToggleBacktraceInstr;
            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.ToggleBacktraceInstr this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 52
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.ToggleBacktraceInstr:(Lorg/jruby/ir/instructions/ToggleBacktraceInstr;)V
         1: .line 53
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.instructions.ToggleBacktraceInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/instructions/ToggleBacktraceInstr;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  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=1, locals=2, args_size=2
        start local 0 // org.jruby.ir.instructions.ToggleBacktraceInstr this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
         0: .line 57
            aload 0 /* this */
            areturn
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
        end local 0 // org.jruby.ir.instructions.ToggleBacktraceInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/ToggleBacktraceInstr;
            0    1     1  info  Lorg/jruby/ir/transformations/inlining/CloneInfo;
    MethodParameters:
      Name  Flags
      info  
}
SourceFile: "ToggleBacktraceInstr.java"