(data)
| 403628 | } else { |
| 403629 | addRunDependency('memory initializer'); |
| 403630 | var applyMemoryInitializer = function(data) { |
| 403631 | if (data.byteLength) data = new Uint8Array(data); |
| 403632 | HEAPU8.set(data, GLOBAL_BASE); |
| 403633 | // Delete the typed array that contains the large blob of the memory initializer request response so that |
| 403634 | // we won't keep unnecessary memory lying around. However, keep the XHR object itself alive so that e.g. |
| 403635 | // its .status field can still be accessed later. |
| 403636 | if (Module['memoryInitializerRequest']) delete Module['memoryInitializerRequest'].response; |
| 403637 | removeRunDependency('memory initializer'); |
| 403638 | } |
| 403639 | function doBrowserLoad() { |
| 403640 | Module['readAsync'](memoryInitializer, applyMemoryInitializer, function() { |
| 403641 | throw 'could not load memory initializer ' + memoryInitializer; |
no test coverage detected
searching dependent graphs…