Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Proxy_has_handler.js
blob: 000b39d4f2170ab7d1c25c3bb82c5a02d04137b5 [
file
] [
log
] [
blame
]
function
test
()
{
var
proxied
=
{};
var
passed
=
false
;
"foo"
in
new
Proxy
(
proxied
,
{
has
:
function
(
t
,
k
)
{
passed
=
t
===
proxied
&&
k
===
"foo"
;
}
});
return
passed
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);