Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

24 lines
260 B
JavaScript

class Foo {
constructor() {
this.constructor;
}
}
class Bar extends Foo {
constructor() {
// This is probably bad...
this.constructor;
super();
}
}
class Baz extends Foo {
constructor() {
super();
this.constructor;
}
}