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() {}
|
|
}
|