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
Running inc should
a) update the exported value for i (what you get when running System.import(...)) and
b) update all dependent modules that import i
This is currently not working b/c we trigger re-exports using a evaluationDone() call at the end of module executions (compiled in as part of rewriting) and evals via lively.vm.
The text was updated successfully, but these errors were encountered:
Note that there is an issue with var modifications that aren't assignments such as i++ or i+=1. Since we don't use getters/setters in the recorder anymore, those changes will not trigger an export notification b/c they aren't jet wrapped by our declaration wrapper. This issue is tracked here: LivelyKernel/lively.ast#8
Running inc should
a) update the exported value for
i
(what you get when runningSystem.import(...)
) andb) update all dependent modules that import
i
This is currently not working b/c we trigger re-exports using a
evaluationDone()
call at the end of module executions (compiled in as part of rewriting) and evals via lively.vm.The text was updated successfully, but these errors were encountered: