Sign in
webkit
/
WebKit
/
6426f5ee574a058c7642177656ec91b1a54133a5
/
.
/
JSTests
/
modules
/
module-eval
/
A.js
blob: 8cc42d1acc898322f991c578ebff86a278e49464 [
file
] [
log
] [
blame
]
import
{
B
}
from
"./B.js"
import
{
shouldThrow
}
from
"../resources/assert.js"
export
let A
=
"A"
;
shouldThrow
(()
=>
{
eval
(
"B"
);
},
`
ReferenceError
:
Cannot
access uninitialized variable
.`);