(file, c)
| 24 | |
| 25 | var nextId = 0, pending = {}; |
| 26 | function getFile(file, c) { |
| 27 | postMessage({type: "getFile", name: file, id: ++nextId}); |
| 28 | pending[nextId] = c; |
| 29 | } |
| 30 | |
| 31 | function startServer(defs, plugins, scripts) { |
| 32 | if (scripts) importScripts.apply(null, scripts); |
nothing calls this directly
no outgoing calls
no test coverage detected