Sign in
webkit
/
WebKit
/
d5bc8626ff9394ad3cac4aff99be89e91a8d2265
/
.
/
JSTests
/
es6
/
super_is_statically_bound.js
blob: 0a73ebee54f0245f0f482df9509a2ba724f87ed8 [
file
] [
log
] [
blame
]
function
test
()
{
class
B
{
qux
()
{
return
"bar"
;
}
}
class
C extends B
{
qux
()
{
return
super
.
qux
()
+
this
.
corge
;
}
}
var
obj
=
{
qux
:
C
.
prototype
.
qux
,
corge
:
"ley"
};
return
obj
.
qux
()
===
"barley"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);