Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
empty-function.js
blob: 612e5105ea238557aca96b7ee4d4eb88b0d5588c [
file
] [
log
] [
blame
]
function
foo
()
{
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
{
var
result
=
foo
();
if
(
result
!==
void
0
)
throw
"You broke JSC so hard that even the empty function doesn't work: "
+
result
;
}