oops forgot to delete an unneeded method

This commit is contained in:
Brian Pilati 2014-03-09 12:00:49 -06:00
parent e59b279be1
commit b6e9ecf0b5

View file

@ -127,13 +127,6 @@ Interpreter.prototype.stepThreads = function() {
}
};
Interpreter.prototype.pauseActiveThread = function() {
var self = this;
var timeoutId = setTimeout(function () {
(self.activeThread.paused) ? self.pauseActiveThread() : clearTimeout(timeoutId);
}, 1000);
}
Interpreter.prototype.stepActiveThread = function() {
// Run the active thread until it yields.
if (typeof(this.activeThread) == 'undefined') {