public class com.oracle.graal.python.nodes.PNodeWithRaise extends com.oracle.graal.python.nodes.PNodeWithContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.graal.python.nodes.PNodeWithRaise
  super_class: com.oracle.graal.python.nodes.PNodeWithContext
{
  private com.oracle.graal.python.nodes.PRaiseNode raiseNode;
    descriptor: Lcom/oracle/graal/python/nodes/PRaiseNode;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.nodes.Node$Child()

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
         0: .line 50
            aload 0 /* this */
            invokespecial com.oracle.graal.python.nodes.PNodeWithContext.<init>:()V
            return
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;

  protected final com.oracle.graal.python.nodes.PRaiseNode getRaiseNode();
    descriptor: ()Lcom/oracle/graal/python/nodes/PRaiseNode;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
         0: .line 54
            aload 0 /* this */
            getfield com.oracle.graal.python.nodes.PNodeWithRaise.raiseNode:Lcom/oracle/graal/python/nodes/PRaiseNode;
            ifnonnull 6
         1: .line 55
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreterAndInvalidate:()V
         2: .line 56
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.isAdoptable:()Z
            ifeq 5
         3: .line 57
            aload 0 /* this */
            aload 0 /* this */
            invokestatic com.oracle.graal.python.nodes.PRaiseNode.create:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.insert:(Lcom/oracle/truffle/api/nodes/Node;)Lcom/oracle/truffle/api/nodes/Node;
            checkcast com.oracle.graal.python.nodes.PRaiseNode
            putfield com.oracle.graal.python.nodes.PNodeWithRaise.raiseNode:Lcom/oracle/graal/python/nodes/PRaiseNode;
         4: .line 58
            goto 6
         5: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic com.oracle.graal.python.nodes.PRaiseNode.getUncached:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            putfield com.oracle.graal.python.nodes.PNodeWithRaise.raiseNode:Lcom/oracle/graal/python/nodes/PRaiseNode;
         6: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.graal.python.nodes.PNodeWithRaise.raiseNode:Lcom/oracle/graal/python/nodes/PRaiseNode;
            areturn
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;

  public com.oracle.graal.python.runtime.exception.PException raise(com.oracle.graal.python.builtins.PythonBuiltinClassType, java.lang.String);
    descriptor: (Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Ljava/lang/String;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        start local 2 // java.lang.String string
         0: .line 66
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* type */
            aload 2 /* string */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Ljava/lang/Object;Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 2 // java.lang.String string
        end local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1    type  Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            0    1     2  string  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      type    
      string  

  public com.oracle.graal.python.runtime.exception.PException raise(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // java.lang.Object exceptionType
         0: .line 70
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* exceptionType */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 1 // java.lang.Object exceptionType
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1  exceptionType  Ljava/lang/Object;
    MethodParameters:
               Name  Flags
      exceptionType  

  public final com.oracle.graal.python.runtime.exception.PException raise(com.oracle.graal.python.builtins.PythonBuiltinClassType, com.oracle.graal.python.builtins.objects.exception.PBaseException, java.lang.String, java.lang.Object[]);
    descriptor: (Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Lcom/oracle/graal/python/builtins/objects/exception/PBaseException;Ljava/lang/String;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        start local 2 // com.oracle.graal.python.builtins.objects.exception.PBaseException cause
        start local 3 // java.lang.String format
        start local 4 // java.lang.Object[] arguments
         0: .line 74
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* type */
            aload 2 /* cause */
            aload 3 /* format */
            aload 4 /* arguments */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Lcom/oracle/graal/python/builtins/objects/exception/PBaseException;Ljava/lang/String;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 4 // java.lang.Object[] arguments
        end local 3 // java.lang.String format
        end local 2 // com.oracle.graal.python.builtins.objects.exception.PBaseException cause
        end local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1       type  Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            0    1     2      cause  Lcom/oracle/graal/python/builtins/objects/exception/PBaseException;
            0    1     3     format  Ljava/lang/String;
            0    1     4  arguments  [Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      type       
      cause      
      format     
      arguments  

  public final com.oracle.graal.python.runtime.exception.PException raise(com.oracle.graal.python.builtins.PythonBuiltinClassType, java.lang.String, java.lang.Object[]);
    descriptor: (Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Ljava/lang/String;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        start local 2 // java.lang.String format
        start local 3 // java.lang.Object[] arguments
         0: .line 78
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* type */
            aload 2 /* format */
            aload 3 /* arguments */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Ljava/lang/String;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 3 // java.lang.Object[] arguments
        end local 2 // java.lang.String format
        end local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1       type  Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            0    1     2     format  Ljava/lang/String;
            0    1     3  arguments  [Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      type       
      format     
      arguments  

  public final com.oracle.graal.python.runtime.exception.PException raise(com.oracle.graal.python.builtins.PythonBuiltinClassType, java.lang.Object[]);
    descriptor: (Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        start local 2 // java.lang.Object[] arguments
         0: .line 82
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* type */
            aload 2 /* arguments */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;[Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 2 // java.lang.Object[] arguments
        end local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1       type  Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            0    1     2  arguments  [Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      type       
      arguments  

  public final com.oracle.graal.python.runtime.exception.PException raise(com.oracle.graal.python.builtins.PythonBuiltinClassType, java.lang.Exception);
    descriptor: (Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Ljava/lang/Exception;)Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
        start local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        start local 2 // java.lang.Exception e
         0: .line 86
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            aload 1 /* type */
            aload 2 /* e */
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raise:(Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;Ljava/lang/Exception;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.oracle.graal.python.builtins.PythonBuiltinClassType type
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
            0    1     1  type  Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            0    1     2     e  Ljava/lang/Exception;
    MethodParameters:
      Name  Flags
      type  
      e     

  public final com.oracle.graal.python.runtime.exception.PException raiseOverflow();
    descriptor: ()Lcom/oracle/graal/python/runtime/exception/PException;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
         0: .line 90
            aload 0 /* this */
            invokevirtual com.oracle.graal.python.nodes.PNodeWithRaise.getRaiseNode:()Lcom/oracle/graal/python/nodes/PRaiseNode;
            getstatic com.oracle.graal.python.runtime.exception.PythonErrorType.OverflowError:Lcom/oracle/graal/python/builtins/PythonBuiltinClassType;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.graal.python.nodes.PRaiseNode.raiseNumberTooLarge:(Ljava/lang/Object;Ljava/lang/Object;)Lcom/oracle/graal/python/runtime/exception/PException;
            areturn
        end local 0 // com.oracle.graal.python.nodes.PNodeWithRaise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/graal/python/nodes/PNodeWithRaise;
}
SourceFile: "PNodeWithRaise.java"
InnerClasses:
  public abstract Child = com.oracle.truffle.api.nodes.Node$Child of com.oracle.truffle.api.nodes.Node