Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
class_constructor.js
blob: 3694b7217de59bef57247017838226e33b78a164 [
file
] [
log
] [
blame
]
function
test
()
{
class
C
{
constructor
()
{
this
.
x
=
1
;
}
}
return
C
.
prototype
.
constructor
===
C
&&
new
C
().
x
===
1
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);