oops forgot to delete an unneeded method
This commit is contained in:
parent
e59b279be1
commit
b6e9ecf0b5
1 changed files with 0 additions and 7 deletions
|
@ -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') {
|
||||
|
|
Reference in a new issue