14 lines
162 B
JavaScript
Raw Normal View History

2019-11-18 18:18:28 -08:00
class A {
constructor(delegate) {
this.property1 = 1;
this._property2 = 2;
}
get getter() {
return null;
}
async method(foo, bar) {
}
}