Sign in
webkit
/
WebKit
/
04f027a29717944fe119ba52f37628c508e2d03c
/
.
/
JSTests
/
stress
/
new-function-expression-has-structures.js
blob: ce0751a3a289d1e53dcc501964053b6dae3c37c4 [
file
] [
log
] [
blame
]
function
foo
()
{
var
f
=
function
()
{
return
42
};
f
.
prototype
.
f
=
function
()
{
return
43
;
};
return
f
.
prototype
.
f
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
foo
();