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
The emscripten minifier could do a better job if it made frequently-used variables use the first names, which tend to be shorter (a,b,c etc, instead of two-letter names or worse).
We could do this with a new simple pass that runs near the end of the pipeline (after minify), and just replaces local names in a function based on usage, most frequently-appearing variables get the first names, etc.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because there has been no activity in the past 2 years. It will be closed automatically if no further activity occurs in the next 7 days. Feel free to re-open at any time if this issue is still relevant.
The emscripten minifier could do a better job if it made frequently-used variables use the first names, which tend to be shorter (a,b,c etc, instead of two-letter names or worse).
We could do this with a new simple pass that runs near the end of the pipeline (after minify), and just replaces local names in a function based on usage, most frequently-appearing variables get the first names, etc.
The text was updated successfully, but these errors were encountered: