(name, what)
| 776 | // Second pass: everything used in the toplevel scope is rooted; |
| 777 | // things used in defun scopes create links |
| 778 | function getGraphName(name, what) { |
| 779 | return 'emcc$' + what + '$' + name; |
| 780 | } |
| 781 | const infos = {}; // the graph name of the item => info for it |
| 782 | for (const [jsName, nativeName] of imports) { |
| 783 | const name = getGraphName(jsName, 'import'); |
no outgoing calls
no test coverage detected