Sign in
webkit
/
WebKit
/
4607ef70b24b852e8d4bdab2b8233fa12bf018e4
/
.
/
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
;