2018-01-09 15:36:42 +01:00

12 lines
154 B
JavaScript

class Test extends Foo {
constructor() {
super();
super.test.whatever();
super.test();
}
static test() {
return super.wow();
}
}