Sign in
webkit
/
WebKit
/
04f027a29717944fe119ba52f37628c508e2d03c
/
.
/
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
);