Merge pull request #404 from marco-c/remove_check_in_invoke_catch

Remove unneeded check in invoke* bytecode instructions
This commit is contained in:
Myk Melez 2014-10-08 11:40:10 -07:00
Родитель bf7cc56f4d cc82680166
Коммит 07250e77fa
1 изменённых файлов: 1 добавлений и 4 удалений

5
vm.js
Просмотреть файл

@ -1067,10 +1067,7 @@ VM.execute = function(ctx) {
Instrument.callResumeHooks(ctx.current());
} catch (e) {
Instrument.callResumeHooks(ctx.current());
if (!e.class) {
throw e;
}
throw_(e, ctx);
throw e;
}
break;
}