* Check that super.* is after super() at runtime * "missing super() call in constructor" runtime * "'this' is not allowed before super()" runtime
8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
class Foo extends Bar {
|
|
constructor() {
|
|
var t = () => super.test()
|
|
super.foo();
|
|
super();
|
|
}
|
|
}
|