()
| 1235 | |
| 1236 | |
| 1237 | function preRun() { |
| 1238 | // compatibility - merge in anything from Module['preRun'] at this time |
| 1239 | if (Module['preRun']) { |
| 1240 | if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; |
| 1241 | while (Module['preRun'].length) { |
| 1242 | addOnPreRun(Module['preRun'].shift()); |
| 1243 | } |
| 1244 | } |
| 1245 | callRuntimeCallbacks(__ATPRERUN__); |
| 1246 | } |
| 1247 | |
| 1248 | function ensureInitRuntime() { |
| 1249 | if (runtimeInitialized) return; |
no test coverage detected
searching dependent graphs…