Files
babel/packages/babel-plugin-proposal-class-properties/test/fixtures/general/foobar/input.js
2018-01-09 15:36:42 +01:00

10 lines
142 B
JavaScript

class Child extends Parent {
constructor() {
super();
}
scopedFunctionWithThis = () => {
this.name = {};
}
}