(name)
| 1586 | const minified = new Map(); |
| 1587 | |
| 1588 | function minify(name) { |
| 1589 | if (!minified.has(name)) { |
| 1590 | minified.set(name, getNewMinifiedName()); |
| 1591 | } |
| 1592 | assert(minified.get(name)); |
| 1593 | return minified.get(name); |
| 1594 | } |
| 1595 | |
| 1596 | // Start with the declared things in the lowest indices. Things like HEAP8 |
| 1597 | // can have very high use counts. |
no test coverage detected