[ ] Use let/const instead of var? Need to write a code size test first to find out whether Closure Compiler handles these well. See #21488
[ ] Change dictionary literals to either use single quotes (more consistent style) or no quotes. Need to check (a) whether Closure can understand these and avoid minifying them and (b) whether removing the quotes would improve Closure output code size. See https://github.com/emscripten-core/emscripten/pull/22494#discussion_r1742574851
[ ] Do something to reduce maintenance overhead of the various string<->int tables. (Dawn's fork does something about this, but it currently relies on Dawn's code generator.)
Tracking issue.
let
/const
instead ofvar
? Need to write a code size test first to find out whether Closure Compiler handles these well. See #21488