Home | History | Annotate | Download | only in embenchen

Lines Matching defs:preRun

5   preRun: [function() {Module.printBuffer = ''}],
170 Module['preRun'] = [];
1148 function preRun() {
1149 // compatibility - merge in anything from Module['preRun'] at this time
1150 if (Module['preRun']) {
1151 if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
1152 while (Module['preRun'].length) {
1153 addOnPreRun(Module['preRun'].shift());
1319 // Note that you can add dependencies in preRun, even though
7933 assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called');
7997 preRun();
7999 if (runDependencies > 0) return; // a preRun added a dependency, run will be called later