puppeteer/utils/doclint/check_public_api/test/09-js-builder/foo.js
Andrey Lushnikov 8bcf550bb6 chore(doclint): add basic tests for documentation parsers (#934)
This patch adds basic tests to verify javascript and markdown
documentation parsers.
2017-10-02 11:45:00 -07:00

18 lines
200 B
JavaScript

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