aboutsummaryrefslogtreecommitdiff
path: root/tests/Module-exports/setup.js
blob: 5c2f0ace948e369e047d4025fdc55ba85ad30cb9 (plain)
1
2
3
4
5
6
7
8
9
/**
 * This file provides some setup for the emscripten runtime. In particular it prevents the runtime exiting.
 * This is necessary as otherwise things like printf don't seem to work from methods called by JavaScript.
 */
var Module = {
    'noExitRuntime' : true
};