Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
well-known_symbols_Symbol.unscopables.js
blob: eee68e97fc8262b6fe871a3760dc048c655125d4 [
file
] [
log
] [
blame
]
function
test
()
{
var
a
=
{
foo
:
1
,
bar
:
2
};
a
[
Symbol
.
unscopables
]
=
{
bar
:
true
};
with
(
a
)
{
return
foo
===
1
&&
typeof
bar
===
"undefined"
;
}
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);