Skip to content

Commit 7936cbf

Browse files
committed
Fix: store args to artificial PFrame.
1 parent 6c86b31 commit 7936cbf

File tree

1 file changed

+1
-0
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/frame

1 file changed

+1
-0
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/frame/PFrame.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ public PFrame(@SuppressWarnings("unused") Object threadState, PCode code, Python
181181
this.location = code.getRootNode();
182182
this.inClassScope = code.getRootNode() instanceof ClassBodyRootNode;
183183
this.line = code.getRootNode() == null ? code.getFirstLineNo() : -2;
184+
this.arguments = frameArgs;
184185

185186
localsDict = locals;
186187
}

0 commit comments

Comments
 (0)