Sign in
webkit
/
WebKit
/
5bd663b95d2fa0048c9b51d7e90d3c09992ceb28
/
.
/
JSTests
/
modules
/
module-namespace-is-sealed.js
blob: 47a0def00ab3b11643a6e2d2e9c73f431c80a268 [
file
] [
log
] [
blame
]
import
*
as ns from
"./module-namespace-is-sealed.js"
import
{
shouldThrow
}
from
"./resources/assert.js"
shouldThrow
(()
=>
{
Object
.
isSealed
(
ns
);
},
`
ReferenceError
:
Cannot
access uninitialized variable
.`);
export
let a
;
export
function
b
()
{
}