Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
string-proto.js
blob: ddcf012a0762fb855ae2c458d26669870ae90858 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
function
target
(
value
)
{
return
value
.
__proto__
;
}
noInline
(
target
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
shouldBe
(
target
(
"Cocoa"
),
String
.
prototype
)