Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
define-property-data.js
blob: e86c4aca25f01abcbddef9f1b3ceddac67c53f00 [
file
] [
edit
]
function
test
(
base
,
value
)
{
Object
.
defineProperty
(
base
,
"hey"
,
{
value
:
value
,
writable
:
true
,
});
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
test
({
},
"property"
);