Replies: 1 comment 2 replies
-
If we had the option to step back to when an object was created I bet we wouldn't strictly need this UI. Although I bet when you support that one, you can easily support this one. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There's some simple case where you can set a breakpoint in the closure context and just step backwards. This works fine closure execution roughly is 1:1 with parent/child. But in some scenarios they are not and this might be scenarios where you run into other limitations like too many breakpoint on this line. Some examples:
Ideally we'd add a new button in the stepping UI call 'Set back to closure' (naming is hard, find a better name :D). In the VM there's a shared closure object, so you roughly want to step back to when that was allocated if that's feasible with the Replay platform.
Beta Was this translation helpful? Give feedback.
All reactions