Sign in
webkit
/
WebKit
/
d1bde47e2b1e48c12ac27a05f41638303dee28b9
/
.
/
JSTests
/
microbenchmarks
/
function-prototype-put-reified.js
blob: b77bcd094cea6a46a51e22818baed396935569c5 [
file
] [
log
] [
blame
]
(
function
()
{
var
fn
=
function
()
{};
var
obj
=
{};
for
(
var
i
=
0
;
i
<
4e5
;
++
i
)
fn
.
prototype
=
obj
;
if
(
fn
.
prototype
!==
obj
)
throw
new
Error
(
"Bad assertion!"
);
})();