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
Currently the rendering is dispatched as a multimethod,
however if more built-in renderers get added to this project it will add significant cost in terms of code size because they cannot be dead code eliminated. https://groups.google.com/forum/#!topic/clojurescript/3rL8vKzyJQA
So future built in rendereres will have to be based on protocols to allow unused renderers to be removed.
The text was updated successfully, but these errors were encountered:
Currently the rendering is dispatched as a multimethod,
however if more built-in renderers get added to this project it will add significant cost in terms of code size because they cannot be dead code eliminated.
https://groups.google.com/forum/#!topic/clojurescript/3rL8vKzyJQA
So future built in rendereres will have to be based on protocols to allow unused renderers to be removed.
The text was updated successfully, but these errors were encountered: