Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
string-instanceof.js
blob: 929a6c99f696c716ef447371119add24b322b24f [
file
] [
log
] [
blame
]
function
foo
(
value
,
proto
)
{
return
value instanceof proto
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
result
=
foo
(
"hello"
,
String
);
if
(
result
)
throw
"Error: bad result: "
+
result
;
}