Sign in
webkit
/
WebKit
/
ff4cb3c2323f3937e96e08f4f6fbe6c7755f9da5
/
.
/
JSTests
/
modules
/
execution-order-cyclic
/
3.js
blob: 73c105403e857a2d44ae6a1b5b137c2f11593e9f [
file
] [
log
] [
blame
]
import
"./1.js"
import
"./2.js"
var
global
=
(
Function
(
"return this"
))();
if
(
global
.
count
!==
2
)
throw
new
Error
(`
bad value $
{
global
.
count
}`);
global
.
count
=
3
;