prettier/tests/bind_expressions/short_name_method.js

9 lines
118 B
JavaScript

class X {
constructor() {
this.shortMethod = ::this.shortMethod;
}
shortMethod() {
return true;
}
}