Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
miscellaneous_subclassables_String_is_subclassable.js
blob: 9ad8354312df33adea272368539fe45fb9654898 [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
String
{}
var
c
=
new
C
(
"golly"
);
return
c instanceof
String
&&
c
+
''
===
"golly"
&&
c
[
0
]
===
"g"
&&
c
.
length
===
5
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);