puppeteer/utils/doclint/test/07-sorting/foo.js
Andrey Lushnikov 45c20c7dad [doclint] introduce class members
This patch unifies Documentation.Method with Documentation.Property,
making it possible to verify sorting order across methods and
properties.

References #14.
2017-07-13 23:02:43 -07:00

12 lines
91 B
JavaScript

class Foo {
constructor() {
this.ddd = 10;
}
aaa() {}
bbb() {}
ccc() {}
}