Skip to content

Commit 498b0f1

Browse files
committed
Backed out changeset c2da041f4b00 (bug 1904059) for causing build bustages WorkerPrivate.cpp CLOSED TREE
UltraBlame original commit: c8a25946ad59cac644038842428afe1c65e4de11
1 parent 9b998ca commit 498b0f1

File tree

2 files changed

+80
-24
lines changed

2 files changed

+80
-24
lines changed

dom/workers/WorkerPrivate.cpp

+80-15
Original file line numberDiff line numberDiff line change
@@ -3893,37 +3893,102 @@ JS
38933893
:
38943894
Rooted
38953895
<
3896+
JSObject
3897+
*
3898+
>
3899+
global
3900+
(
3901+
aCx
38963902
JS
38973903
:
38983904
:
3899-
Value
3900-
>
3901-
rval
3905+
CurrentGlobalOrNull
39023906
(
39033907
aCx
39043908
)
3909+
)
39053910
;
3906-
IgnoredErrorResult
3907-
rv
3908-
;
3911+
JS
3912+
:
3913+
:
3914+
Rooted
3915+
<
3916+
JS
3917+
:
3918+
:
3919+
Value
3920+
>
3921+
callable
3922+
(
3923+
aCx
3924+
JS
3925+
:
3926+
:
3927+
ObjectOrNullValue
3928+
(
39093929
mHandler
39103930
-
39113931
>
3912-
Call
3932+
CallableOrNull
39133933
(
3914-
{
3915-
}
3916-
&
3934+
)
3935+
)
3936+
)
3937+
;
3938+
JS
3939+
:
3940+
:
3941+
HandleValueArray
3942+
args
3943+
=
3944+
JS
3945+
:
3946+
:
3947+
HandleValueArray
3948+
:
3949+
:
3950+
empty
3951+
(
3952+
)
3953+
;
3954+
JS
3955+
:
3956+
:
3957+
Rooted
3958+
<
3959+
JS
3960+
:
3961+
:
3962+
Value
3963+
>
39173964
rval
3918-
rv
3965+
(
3966+
aCx
39193967
)
39203968
;
3921-
return
3922-
!
3923-
rv
3969+
/
3970+
/
3971+
WorkerRunnable
3972+
:
3973+
:
3974+
Run
3975+
will
3976+
report
3977+
the
3978+
exception
3979+
if
3980+
it
3981+
happens
39243982
.
3925-
Failed
3983+
return
3984+
JS_CallFunctionValue
39263985
(
3986+
aCx
3987+
global
3988+
callable
3989+
args
3990+
&
3991+
rval
39273992
)
39283993
;
39293994
}

dom/workers/test/WorkerDebugger.initialize_waiting_debugger.js

-9
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ n
1414
"
1515
)
1616
;
17-
setImmediate
18-
(
19-
function
20-
(
21-
)
22-
{
2317
postMessage
2418
(
2519
"
@@ -29,6 +23,3 @@ ran
2923
"
3024
)
3125
;
32-
}
33-
)
34-
;

0 commit comments

Comments
 (0)