Merge pull request #76 from tmickel/feature/no-try-catch

Remove try/catch in execution - fix #75
This commit is contained in:
Tim Mickel 2016-06-17 11:37:17 -04:00 committed by GitHub
commit da4313cf05

View file

@ -58,7 +58,6 @@ var execute = function (sequencer, thread) {
console.log('and stack frame: ', currentStackFrame);
}
var primitiveReturnValue = null;
try {
// @todo deal with the return value
primitiveReturnValue = blockFunction(argValues, {
yield: thread.yield.bind(thread),
@ -71,12 +70,6 @@ var execute = function (sequencer, thread) {
sequencer.stepToSubstack(thread, substackNum);
}
});
}
catch(e) {
console.error(
'Exception calling block function for opcode: ' +
opcode + '\n' + e);
} finally {
// Update if the thread has set a yield timer ID
// @todo hack
if (YieldTimers.timerId > oldYieldTimerId) {
@ -88,7 +81,6 @@ var execute = function (sequencer, thread) {
console.groupEnd();
}
return primitiveReturnValue;
}
};
module.exports = execute;