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 have a local variable (could also be a function parameter), that is not assigned (i.e. no setter for that variable), then we also should not inject a getter. E.g.:
letv=42;aexpr(()=>v);
Without an assignment to v such as v = 17, we do not need to track v for changes!