Sign in
webkit
/
WebKit
/
6ada3cd2e0d9b9e450b5e021e0e5526f55f59df8
/
.
/
JSTests
/
stress
/
super-call-function-subclass.js
blob: 375c00996e8ed7b432946ffd463d8f24c198a9c5 [
file
] [
log
] [
blame
]
function
assert
(
a
)
{
if
(!
a
)
throw
new
Error
(
"Bad"
);
}
class
A extends
Function
{
t
()
{
super
.
call
(
this
);
return
3
;
}
}
let a
=
new
A
();
assert
(
a
.
t
()
==
3
);