()
| 540 | } |
| 541 | |
| 542 | function postRun() { |
| 543 | checkStackCookie(); |
| 544 | |
| 545 | if (Module['postRun']) { |
| 546 | if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; |
| 547 | while (Module['postRun'].length) { |
| 548 | addOnPostRun(Module['postRun'].shift()); |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | callRuntimeCallbacks(__ATPOSTRUN__); |
| 553 | } |
| 554 | |
| 555 | function addOnPreRun(cb) { |
| 556 | __ATPRERUN__.unshift(cb); |
no test coverage detected