public abstract class com.oracle.graal.python.nodes.PClosureFunctionRootNode extends com.oracle.graal.python.nodes.PClosureRootNode
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.graal.python.nodes.PClosureFunctionRootNode
  super_class: com.oracle.graal.python.nodes.PClosureRootNode
{
  protected final com.oracle.truffle.api.frame.FrameSlot[] cellVarSlots;
    descriptor: [Lcom/oracle/truffle/api/frame/FrameSlot;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal(dimensions = 1)

  protected final com.oracle.truffle.api.Assumption[] cellEffectivelyFinalAssumptions;
    descriptor: [Lcom/oracle/truffle/api/Assumption;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal(dimensions = 1)

  private final com.oracle.graal.python.builtins.objects.function.Signature signature;
    descriptor: Lcom/oracle/graal/python/builtins/objects/function/Signature;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(com.oracle.graal.python.PythonLanguage, com.oracle.truffle.api.frame.FrameDescriptor, com.oracle.graal.python.parser.ExecutionCellSlots, com.oracle.graal.python.builtins.objects.function.Signature);
    descriptor: (Lcom/oracle/graal/python/PythonLanguage;Lcom/oracle/truffle/api/frame/FrameDescriptor;Lcom/oracle/graal/python/parser/ExecutionCellSlots;Lcom/oracle/graal/python/builtins/objects/function/Signature;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
        start local 1 // com.oracle.graal.python.PythonLanguage language
        start local 2 // com.oracle.truffle.api.frame.FrameDescriptor frameDescriptor
        start local 3 // com.oracle.graal.python.parser.ExecutionCellSlots executionCellSlots
        start local 4 // com.oracle.graal.python.builtins.objects.function.Signature signature
         0: .line 57
            aload 0 /* this */
            aload 1 /* language */
            aload 2 /* frameDescriptor */
            aload 3 /* executionCellSlots */
            invokevirtual com.oracle.graal.python.parser.ExecutionCellSlots.getFreeVarSlots:()[Lcom/oracle/truffle/api/frame/FrameSlot;
            iconst_1
            invokespecial com.oracle.graal.python.nodes.PClosureRootNode.<init>:(Lcom/oracle/graal/python/PythonLanguage;Lcom/oracle/truffle/api/frame/FrameDescriptor;[Lcom/oracle/truffle/api/frame/FrameSlot;Z)V
         1: .line 58
            aload 0 /* this */
            aload 3 /* executionCellSlots */
            invokevirtual com.oracle.graal.python.parser.ExecutionCellSlots.getCellVarSlots:()[Lcom/oracle/truffle/api/frame/FrameSlot;
            putfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.cellVarSlots:[Lcom/oracle/truffle/api/frame/FrameSlot;
         2: .line 59
            aload 0 /* this */
            aload 3 /* executionCellSlots */
            invokevirtual com.oracle.graal.python.parser.ExecutionCellSlots.getCellVarAssumptions:()[Lcom/oracle/truffle/api/Assumption;
            putfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.cellEffectivelyFinalAssumptions:[Lcom/oracle/truffle/api/Assumption;
         3: .line 60
            aload 0 /* this */
            aload 4 /* signature */
            putfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.signature:Lcom/oracle/graal/python/builtins/objects/function/Signature;
         4: .line 61
            return
        end local 4 // com.oracle.graal.python.builtins.objects.function.Signature signature
        end local 3 // com.oracle.graal.python.parser.ExecutionCellSlots executionCellSlots
        end local 2 // com.oracle.truffle.api.frame.FrameDescriptor frameDescriptor
        end local 1 // com.oracle.graal.python.PythonLanguage language
        end local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    5     0                this  Lcom/oracle/graal/python/nodes/PClosureFunctionRootNode;
            0    5     1            language  Lcom/oracle/graal/python/PythonLanguage;
            0    5     2     frameDescriptor  Lcom/oracle/truffle/api/frame/FrameDescriptor;
            0    5     3  executionCellSlots  Lcom/oracle/graal/python/parser/ExecutionCellSlots;
            0    5     4           signature  Lcom/oracle/graal/python/builtins/objects/function/Signature;
    MethodParameters:
                    Name  Flags
      language            
      frameDescriptor     
      executionCellSlots  
      signature           

  public java.lang.String[] getCellVars();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
         0: .line 64
            aload 0 /* this */
            getfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.cellVarSlots:[Lcom/oracle/truffle/api/frame/FrameSlot;
            arraylength
            anewarray java.lang.String
            astore 1 /* cellVars */
        start local 1 // java.lang.String[] cellVars
         1: .line 65
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 66
      StackMap locals: java.lang.String[] int
      StackMap stack:
            aload 1 /* cellVars */
            iload 2 /* i */
            aload 0 /* this */
            getfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.cellVarSlots:[Lcom/oracle/truffle/api/frame/FrameSlot;
            iload 2 /* i */
            aaload
            invokevirtual com.oracle.truffle.api.frame.FrameSlot.getIdentifier:()Ljava/lang/Object;
            checkcast java.lang.String
            aastore
         4: .line 65
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* cellVars */
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 68
            aload 1 /* cellVars */
            areturn
        end local 1 // java.lang.String[] cellVars
        end local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/oracle/graal/python/nodes/PClosureFunctionRootNode;
            1    7     1  cellVars  [Ljava/lang/String;
            2    6     2         i  I

  public com.oracle.graal.python.builtins.objects.function.Signature getSignature();
    descriptor: ()Lcom/oracle/graal/python/builtins/objects/function/Signature;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
         0: .line 73
            aload 0 /* this */
            getfield com.oracle.graal.python.nodes.PClosureFunctionRootNode.signature:Lcom/oracle/graal/python/builtins/objects/function/Signature;
            areturn
        end local 0 // com.oracle.graal.python.nodes.PClosureFunctionRootNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/graal/python/nodes/PClosureFunctionRootNode;
}
SourceFile: "PClosureFunctionRootNode.java"
InnerClasses:
  public abstract CompilationFinal = com.oracle.truffle.api.CompilerDirectives$CompilationFinal of com.oracle.truffle.api.CompilerDirectives