()
| 1843 | checkStackCookie(); |
| 1844 | } |
| 1845 | function postRun() { |
| 1846 | checkStackCookie(); |
| 1847 | if (Module['postRun']) { |
| 1848 | if (typeof Module['postRun'] == 'function') |
| 1849 | Module['postRun'] = [Module['postRun']]; |
| 1850 | while (Module['postRun'].length) { |
| 1851 | addOnPostRun(Module['postRun'].shift()); |
| 1852 | } |
| 1853 | } |
| 1854 | consumedModuleProp('postRun'); |
| 1855 | callRuntimeCallbacks(onPostRuns); |
| 1856 | } |
| 1857 | function abort(what) { |
| 1858 | Module['onAbort']?.(what); |
| 1859 | what = 'Aborted(' + what + ')'; |
no test coverage detected