Sign in
webkit
/
WebKit
/
c6a7a2f378a60ecad2c606428f6fc0921528b1a6
/
.
/
JSTests
/
stress
/
dfg-rare-data.js
blob: 45a3f0e1542e9ad48007a7052a6358f8f849b494 [
file
] [
log
] [
blame
]
function
F
()
{
this
.
inner
=
42
;
};
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
x
=
new
F
(
false
);
F
.
prototype
=
Object
;
// Force clearing of the function's rare data
var
result
=
x
.
inner
;
if
(
result
!==
42
)
throw
"Expected 42, got: "
+
result
;
}