You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After #2417 is merged
Popping call_frame is necessary in some occasions. For example, in the context of run_execution it is crucial for interacting with both the executed call frame and the parent call frame.
But for scenarios like finalize_execution we don't actually need to pop the call frame and push it back again. We could refactor this so that finalize_execution interacts with self.current_call_frame() instead of
The text was updated successfully, but these errors were encountered:
After #2417 is merged
Popping
call_frame
is necessary in some occasions. For example, in the context of run_execution it is crucial for interacting with both the executed call frame and the parent call frame.But for scenarios like
finalize_execution
we don't actually need to pop the call frame and push it back again. We could refactor this so that finalize_execution interacts withself.current_call_frame()
instead ofThe text was updated successfully, but these errors were encountered: