public class org.jruby.ir.runtime.IRReturnJump extends org.jruby.ir.runtime.IRJump implements org.jruby.exceptions.Unrescuable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.runtime.IRReturnJump
  super_class: org.jruby.ir.runtime.IRJump
{
  public final org.jruby.ir.IRScope returnScope;
    descriptor: Lorg/jruby/ir/IRScope;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final org.jruby.runtime.DynamicScope methodToReturnFrom;
    descriptor: Lorg/jruby/runtime/DynamicScope;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final java.lang.Object returnValue;
    descriptor: Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  private void <init>(org.jruby.ir.IRScope, org.jruby.runtime.DynamicScope, java.lang.Object);
    descriptor: (Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/DynamicScope;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.jruby.ir.runtime.IRReturnJump this
        start local 1 // org.jruby.ir.IRScope returnScope
        start local 2 // org.jruby.runtime.DynamicScope scopeToReturnFrom
        start local 3 // java.lang.Object rv
         0: .line 12
            aload 0 /* this */
            invokespecial org.jruby.ir.runtime.IRJump.<init>:()V
         1: .line 13
            aload 0 /* this */
            aload 2 /* scopeToReturnFrom */
            putfield org.jruby.ir.runtime.IRReturnJump.methodToReturnFrom:Lorg/jruby/runtime/DynamicScope;
         2: .line 14
            aload 0 /* this */
            aload 1 /* returnScope */
            putfield org.jruby.ir.runtime.IRReturnJump.returnScope:Lorg/jruby/ir/IRScope;
         3: .line 15
            aload 0 /* this */
            aload 3 /* rv */
            putfield org.jruby.ir.runtime.IRReturnJump.returnValue:Ljava/lang/Object;
         4: .line 16
            return
        end local 3 // java.lang.Object rv
        end local 2 // org.jruby.runtime.DynamicScope scopeToReturnFrom
        end local 1 // org.jruby.ir.IRScope returnScope
        end local 0 // org.jruby.ir.runtime.IRReturnJump this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/jruby/ir/runtime/IRReturnJump;
            0    5     1        returnScope  Lorg/jruby/ir/IRScope;
            0    5     2  scopeToReturnFrom  Lorg/jruby/runtime/DynamicScope;
            0    5     3                 rv  Ljava/lang/Object;
    MethodParameters:
                   Name  Flags
      returnScope        
      scopeToReturnFrom  
      rv                 

  public static org.jruby.ir.runtime.IRReturnJump create(org.jruby.ir.IRScope, org.jruby.runtime.DynamicScope, java.lang.Object);
    descriptor: (Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/DynamicScope;Ljava/lang/Object;)Lorg/jruby/ir/runtime/IRReturnJump;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.ir.IRScope returnScope
        start local 1 // org.jruby.runtime.DynamicScope scopeToReturnFrom
        start local 2 // java.lang.Object rv
         0: .line 19
            new org.jruby.ir.runtime.IRReturnJump
            dup
            aload 0 /* returnScope */
            aload 1 /* scopeToReturnFrom */
            aload 2 /* rv */
            invokespecial org.jruby.ir.runtime.IRReturnJump.<init>:(Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/DynamicScope;Ljava/lang/Object;)V
            areturn
        end local 2 // java.lang.Object rv
        end local 1 // org.jruby.runtime.DynamicScope scopeToReturnFrom
        end local 0 // org.jruby.ir.IRScope returnScope
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0        returnScope  Lorg/jruby/ir/IRScope;
            0    1     1  scopeToReturnFrom  Lorg/jruby/runtime/DynamicScope;
            0    1     2                 rv  Ljava/lang/Object;
    MethodParameters:
                   Name  Flags
      returnScope        
      scopeToReturnFrom  
      rv                 

  public boolean isReturnToScope(org.jruby.runtime.DynamicScope);
    descriptor: (Lorg/jruby/runtime/DynamicScope;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.runtime.IRReturnJump this
        start local 1 // org.jruby.runtime.DynamicScope scope
         0: .line 23
            aload 0 /* this */
            getfield org.jruby.ir.runtime.IRReturnJump.methodToReturnFrom:Lorg/jruby/runtime/DynamicScope;
            aload 1 /* scope */
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // org.jruby.runtime.DynamicScope scope
        end local 0 // org.jruby.ir.runtime.IRReturnJump this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jruby/ir/runtime/IRReturnJump;
            0    2     1  scope  Lorg/jruby/runtime/DynamicScope;
    MethodParameters:
       Name  Flags
      scope  

  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.runtime.IRReturnJump this
         0: .line 28
            new java.lang.StringBuilder
            dup
            ldc "IRReturnJump:<"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.runtime.IRReturnJump.methodToReturnFrom:Lorg/jruby/runtime/DynamicScope;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ":"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.jruby.ir.runtime.IRReturnJump.returnValue:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ">"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ir.runtime.IRReturnJump this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/runtime/IRReturnJump;
}
SourceFile: "IRReturnJump.java"