Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
super_in_methods_method_calls.js
blob: bd3788737d71032244fdd87840c8b1b19476123b [
file
] [
log
] [
blame
]
function
test
()
{
class
B
{
qux
(
a
)
{
return
"foo"
+
a
;
}
}
class
C extends B
{
qux
(
a
)
{
return
super
.
qux
(
"bar"
+
a
);
}
}
return
new
C
().
qux
(
"baz"
)
===
"foobarbaz"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);