Sign in
webkit
/
WebKit
/
57b40c420b18a382c5831490354fc98d6882db7d
/
.
/
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
;
}