short_name_method.js 118 B

123456789
  1. class X {
  2. constructor() {
  3. this.shortMethod = ::this.shortMethod;
  4. }
  5. shortMethod() {
  6. return true;
  7. }
  8. }