16
16
17
17
package org .scalajs .macrotaskexecutor
18
18
19
- import scala .collection .mutable
20
19
import scala .concurrent .{ExecutionContext , ExecutionContextExecutor }
21
20
import scala .scalajs .js
22
21
import scala .util .Random
@@ -37,7 +36,7 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
37
36
private [this ] val setImmediate : Runnable => Unit = {
38
37
if (js.typeOf(js.Dynamic .global.setImmediate) == Undefined ) {
39
38
var nextHandle = 1
40
- val tasksByHandle = mutable. Map [ Int , Runnable ]()
39
+ val tasksByHandle = ( new js. Object ). asInstanceOf [js. Dynamic ]
41
40
var currentlyRunningATask = false
42
41
43
42
def canUsePostMessage (): Boolean = {
@@ -67,17 +66,15 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
67
66
if (currentlyRunningATask) {
68
67
js.Dynamic .global.setTimeout(() => runIfPresent(handle), 0 )
69
68
} else {
70
- tasksByHandle.get(handle) match {
71
- case Some (task) =>
72
- currentlyRunningATask = true
73
- try {
74
- task.run()
75
- } finally {
76
- tasksByHandle -= handle
77
- currentlyRunningATask = false
78
- }
79
-
80
- case None =>
69
+ val task = tasksByHandle(handle)
70
+ if (task.isDefined) {
71
+ currentlyRunningATask = true
72
+ try {
73
+ task.asInstanceOf [Runnable ].run()
74
+ } finally {
75
+ js.special.delete(tasksByHandle, handle)
76
+ currentlyRunningATask = false
77
+ }
81
78
}
82
79
}
83
80
@@ -129,7 +126,7 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
129
126
val handle = nextHandle
130
127
nextHandle += 1
131
128
132
- tasksByHandle += (handle -> k)
129
+ tasksByHandle(handle) = k
133
130
js.Dynamic .global.postMessage(messagePrefix + handle, " *" )
134
131
()
135
132
}
@@ -144,7 +141,7 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
144
141
val handle = nextHandle
145
142
nextHandle += 1
146
143
147
- tasksByHandle += (handle -> k)
144
+ tasksByHandle(handle) = k
148
145
channel.port2.postMessage(handle)
149
146
()
150
147
}
0 commit comments