()
| 1261 | } |
| 1262 | |
| 1263 | function postRun() { |
| 1264 | // compatibility - merge in anything from Module['postRun'] at this time |
| 1265 | if (Module['postRun']) { |
| 1266 | if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; |
| 1267 | while (Module['postRun'].length) { |
| 1268 | addOnPostRun(Module['postRun'].shift()); |
| 1269 | } |
| 1270 | } |
| 1271 | callRuntimeCallbacks(__ATPOSTRUN__); |
| 1272 | } |
| 1273 | |
| 1274 | function addOnPreRun(cb) { |
| 1275 | __ATPRERUN__.unshift(cb); |
no test coverage detected
searching dependent graphs…