Sign in
webkit
/
WebKit
/
fe3f8a9f58c921838bd3a920db5f85be838171cd
/
.
/
JSTests
/
stress
/
dfg-internal-function-call.js
blob: d04852aaeaaa22787891e8114959aa7dda5380b2 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
noInline
(
shouldBe
);
function
target
(
func
)
{
return
func
();
}
noInline
(
target
);
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
shouldBe
(
target
(
Array
).
length
,
0
);