Sign in
webkit
/
WebKit
/
68ae80dbd852513426dc763371e83df226c8fcb9
/
.
/
JSTests
/
modules
/
execution-order-cyclic
/
11.js
blob: 20f3cedae181fb19c1b958743685495b7c3f23e7 [
file
] [
log
] [
blame
]
utatane.tea@gmail.com
627fb63
2015-09-05 07:44:35 +0000
[
diff
] [
blame
]
1
import
"./10.js"
2
import
"./4.js"
3
4
var
global
=
(
Function
(
"return this"
))();
5
if
(
global
.
count
!==
10
)
6
throw
new
Error
(`
bad value $
{
global
.
count
}`);
7
global
.
count
=
11
;