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

9 lines
126 B
JavaScript

class A extends B {
constructor() {
super();
this.arrow1 = (x) => { return x; };
this.arrow2 = (x) => x;
}
}