2014-10-11 08:58:54 +11:00

17 lines
185 B
JavaScript

class Test extends Foo {
constructor() {
woops.super.test();
super();
super.test();
foob(super);
}
test() {
super();
}
static foo() {
super();
}
}