Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
modules
/
sync-from-async
/
b.js
blob: caedb4ac1b0b940669b821b5a1d22ea3068603f6 [
file
] [
edit
]
import
{
aValue
}
from
"./a.js"
;
import
{
shouldThrow
}
from
"../resources/assert.js"
export
const
bValue
=
100
;
shouldThrow
(()
=>
{
eval
(
"aValue"
);
},
`
ReferenceError
:
Cannot
access
'aValue'
before initialization
.`);