clean up shell.js
This commit is contained in:
Родитель
4fe256e257
Коммит
d2f680e7a4
|
@ -21,6 +21,8 @@ Module.callMain = function callMain(args) {
|
|||
}
|
||||
|
||||
function run(args) {
|
||||
args = args || Module.arguments;
|
||||
|
||||
__initializeRuntime__();
|
||||
|
||||
var globalFuncs = [];
|
||||
|
@ -39,8 +41,13 @@ Module['run'] = run;
|
|||
// {{PRE_RUN_ADDITIONS}}
|
||||
|
||||
#if INVOKE_RUN
|
||||
run(args);
|
||||
#else
|
||||
Module.noInitialRun = true;
|
||||
#endif
|
||||
|
||||
if (!Module.noInitialRun) {
|
||||
run();
|
||||
}
|
||||
|
||||
// {{POST_RUN_ADDITIONS}}
|
||||
|
||||
|
|
11
src/shell.js
11
src/shell.js
|
@ -6,8 +6,15 @@
|
|||
// args = args || [];
|
||||
|
||||
// Runs much faster, for some reason
|
||||
this['Module'] = {};
|
||||
var args = arguments;
|
||||
if (!this['Module']) {
|
||||
this['Module'] = {};
|
||||
}
|
||||
try {
|
||||
Module.arguments = arguments;
|
||||
} catch(e) {
|
||||
Module.arguments = [];
|
||||
}
|
||||
|
||||
{{BODY}}
|
||||
|
||||
// {{MODULE_ADDITIONS}}
|
||||
|
|
|
@ -2411,7 +2411,7 @@ else:
|
|||
|
||||
USE_CLOSURE_COMPILER = 1
|
||||
|
||||
TEST_REPS = 10
|
||||
TEST_REPS = 3
|
||||
TOTAL_TESTS = 4
|
||||
|
||||
tests_done = 0
|
||||
|
|
Загрузка…
Ссылка в новой задаче