(name)
| 463 | } |
| 464 | |
| 465 | function exportSymbol(name) { |
| 466 | // In MODULARIZE=instance mode symbols are exported by being included in |
| 467 | // an export { foo, bar } list so we build up the simple list of names |
| 468 | if (MODULARIZE === 'instance') { |
| 469 | return name; |
| 470 | } |
| 471 | return `Module['${name}'] = ${name};`; |
| 472 | } |
| 473 | |
| 474 | // export parts of the JS runtime that the user asked for |
| 475 | function exportRuntimeSymbols() { |
no outgoing calls
no test coverage detected