mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
Store postponed actions in a queue
This commit is contained in:
parent
80814ef167
commit
7f33f64d25
|
@ -460,10 +460,10 @@ function $rt_rootInvocationAdapter(f) {
|
||||||
});
|
});
|
||||||
f.apply(this, args);
|
f.apply(this, args);
|
||||||
var thread = $rt_getThread();
|
var thread = $rt_getThread();
|
||||||
while (thread.postponed) {
|
if (thread.hasOwnProperty("postponed")) {
|
||||||
var postponed = thread.postponed;
|
while (thread.postponed.length > 0) {
|
||||||
thread.postponed = null;
|
thread.postponed.shift()();
|
||||||
postponed();
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -497,13 +497,12 @@ function $rt_continue(f) {
|
||||||
var self = this;
|
var self = this;
|
||||||
var args = arguments;
|
var args = arguments;
|
||||||
var thread = $rt_getThread();
|
var thread = $rt_getThread();
|
||||||
var oldPostponed = thread.postponed;
|
if (!thread.hasOwnProperty("postponed")) {
|
||||||
thread.postponed = function() {
|
thread.postponed = [];
|
||||||
if (oldPostponed) {
|
|
||||||
oldPostponed();
|
|
||||||
}
|
}
|
||||||
|
thread.postponed.push(function() {
|
||||||
f.apply(self, args);
|
f.apply(self, args);
|
||||||
};
|
});
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return f;
|
return f;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user