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

18 lines
200 B
JavaScript
Raw Normal View History

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