Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
super_statement_in_constructors.js
blob: a3f1218546fe24ff4c2a62c9eb78c78044ee519d [
file
] [
log
] [
blame
]
function
test
()
{
var
passed
=
false
;
class
B
{
constructor
(
a
)
{
passed
=
(
a
===
"barbaz"
);
}
}
class
C extends B
{
constructor
(
a
)
{
super
(
"bar"
+
a
);
}
}
new
C
(
"baz"
);
return
passed
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);