Sign in
webkit
/
WebKit
/
961dc37032b13d1a9d74ca738cc4946af6754457
/
.
/
Source
/
JavaScriptCore
/
tests
/
es6
/
class_extends.js
blob: 2b5ff4e7e6c5cc56e7d3694810d5313056231a83 [
file
] [
log
] [
blame
]
function
test
()
{
class
B
{}
class
C extends B
{}
return
new
C
()
instanceof B
&&
B
.
isPrototypeOf
(
C
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);