Sign in
webkit
/
WebKit
/
ff4cb3c2323f3937e96e08f4f6fbe6c7755f9da5
/
.
/
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
);