puppeteer/utils/doclint/check_public_api/test/js-builder-common/foo.js

14 lines
162 B
JavaScript
Raw Normal View History

class A {
constructor(delegate) {
this.property1 = 1;
this._property2 = 2;
}
get getter() {
return null;
}
async method(foo, bar) {
}
}