We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5071324 commit 8a724cbCopy full SHA for 8a724cb
rt/src/Scheduler.mts
@@ -258,16 +258,6 @@ export class Scheduler implements SchedulerInterface {
258
dest = _curThread.next;
259
let ttl = 1000; // magic constant; 2021-04-29
260
while (dest && ttl--) {
261
- // 2021-04-24; AA; TODO: profile the addition of this conditional in this tight loop
262
- // if (showStack) {
263
- // this.__currentThread.showStack()
264
- // }
265
- // console.log (">>>>>>>>>>")
266
- // console.log (dest.toString())
267
- // console.log ("<<<<<<<<<<")
268
- // if (dest.debugname ) {
269
- // console.log (" -- ", dest.debugname)
270
271
dest = dest();
272
}
273
0 commit comments