Remove unneeded check in invoke* bytecode instructions

This commit is contained in:
Marco Castelluccio 2014-10-06 18:01:47 -07:00
Родитель 65cd162631
Коммит cc82680166
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;
}