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
If we call refactor on code that calls refactored code, we multiply the executions (2^n).
We should only compute the refactored code if we're nested through a lhs call.
I think wen can do this either :
inspecting the call stack for the last call
using global variables that are updated when entering a new call
The text was updated successfully, but these errors were encountered:
If we call refactor on code that calls refactored code, we multiply the executions (2^n).
We should only compute the refactored code if we're nested through a lhs call.
I think wen can do this either :
The text was updated successfully, but these errors were encountered: