Lines Matching defs:preRun
38 preRun: function() {
203 Module['preRun'] = [];
1160 function preRun() {
1161 // compatibility - merge in anything from Module['preRun'] at this time
1162 if (Module['preRun']) {
1163 if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
1164 while (Module['preRun'].length) {
1165 addOnPreRun(Module['preRun'].shift());
1331 // Note that you can add dependencies in preRun, even though
9059 assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called');
9127 preRun();
9129 if (runDependencies > 0) return; // a preRun added a dependency, run will be called later