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
In branch resolve-better this saves about 100kb: 900kb -> 800kb. More space can be saved by moving more stuff to compile time in the expanded code and maybe moving some cond-> stuff into a function.
When writing
(meta (var x))
in CLJS, you basically pull all metadata to the runtime. Instead you can do:at compile time, then inspect some metadata and only copy what is needed to the runtime.
We can leverage this better in
sci.impl.namespaces
andsci.core
.The text was updated successfully, but these errors were encountered: