fallback if no |arguments| (like on the web)

This commit is contained in:
alon@honor 2010-09-11 16:03:11 -07:00
Родитель 5fe819882b
Коммит f0e4c9f470
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ function run(args) {
}
try {
run(arguments);
run(this.arguments ? arguments : []);
} catch (e) {
print("Fatal exception: " + e.stack);
throw e;