Sign in
webkit
/
WebKit
/
60c3f717a9141a0f8afd6e8437d26c6404e4424c
/
.
/
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
;