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
{{ message }}
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
Currently the whole debug datapack is regenerated for any change to a function or breakpoint. This is especially bad because stepping dynamically adds and removes breakpoints, causing a regeneration each time.
When breakpoints are changed, we only need to regenerate the files of the function those breakpoints are in and resume_self.
When a function is changed we need to regenerate the files of that function and if the call tree changes also the return functions.
The text was updated successfully, but these errors were encountered:
Currently the whole debug datapack is regenerated for any change to a function or breakpoint. This is especially bad because stepping dynamically adds and removes breakpoints, causing a regeneration each time.
When breakpoints are changed, we only need to regenerate the files of the function those breakpoints are in and
resume_self
.When a function is changed we need to regenerate the files of that function and if the call tree changes also the return functions.
The text was updated successfully, but these errors were encountered: