Sign in
webkit
/
WebKit
/
17656c7bf44c7c7680ec56b7527b97650a4a499c
/
.
/
JSTests
/
microbenchmarks
/
reflect-set-with-receiver.js
blob: e354f3adaa3b9fda7b12b5723fecc391cd46bf3e [
file
] [
log
] [
blame
]
(
function
()
{
var
target
=
new
(
class
{});
for
(
var
i
=
0
;
i
<
1e6
;
i
++)
Reflect
.
set
(
target
,
"foo"
,
1
,
{});
})();