Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
proxy-gopd.js
blob: adb7f08dda2cae12a7193a43232b15e2302f4459 [
file
] [
log
] [
blame
] [
edit
]
(
function
()
{
var
proxy
=
new
Proxy
({},
{
getOwnPropertyDescriptor
(
target
,
propertyName
)
{}
});
var
desc
;
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
desc
=
Object
.
getOwnPropertyDescriptor
(
proxy
,
"test"
);
})();