mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
45c20c7dad
This patch unifies Documentation.Method with Documentation.Property, making it possible to verify sorting order across methods and properties. References #14.
12 lines
91 B
JavaScript
12 lines
91 B
JavaScript
class Foo {
|
|
constructor() {
|
|
this.ddd = 10;
|
|
}
|
|
|
|
aaa() {}
|
|
|
|
bbb() {}
|
|
|
|
ccc() {}
|
|
}
|