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 was archived by the owner on Jan 11, 2023. It is now read-only.
We grey out the out of scope lines when we pause. We currently update the out of scope lines when you step, but leave them there when you resume. We should obviously clear them out :)
This should do it:
diff --git a/src/reducers/ast.js b/src/reducers/ast.js
index 5702bf1..ad9b2db 100644
--- a/src/reducers/ast.js+++ b/src/reducers/ast.js@@ -50,6 +50,10 @@ function update(
return state.set("selection", null);
}
+ case "RESUMED": {+ return state.set("outOfScopeLocations", null);+ }+
case "SET_SELECTION": {
if (action.status == "start") {
return state.set("selection", {
We grey out the out of scope lines when we pause. We currently update the out of scope lines when you step, but leave them there when you resume. We should obviously clear them out :)
This should do it:
screenshot