Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
empty-function.js
blob: 55c5ae46966cfe8d0c07c092a58497fffc7738a0 [
file
] [
log
] [
blame
] [
edit
]
function
foo
()
{
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
{
var
result
=
foo
();
if
(
result
!==
void
0
)
throw
"You broke JSC so hard that even the empty function doesn't work: "
+
result
;
}