puppeteer/utils/doclint/test/03-property-errors/foo.js
Andrey Lushnikov c468c451c5 [doclint] move doclint testing to golden
This patch:
- move doclint testing to golden
- refactor doclint/lint.js to drop specs and everything
2017-07-13 11:17:02 -07:00

8 lines
98 B
JavaScript

class Foo {
constructor() {
this.a = 42;
this.b = 'hello';
this.emit('done');
}
}