documentation/test/fixture/sort-order-alpha.input.js
Erik Arvidsson a71bb03681 Fix sort order alpha (#542)
The old code didn't work correctly with regards to making the sort
aware of memberof.
2016-09-12 16:41:28 -07:00

32 lines
267 B
JavaScript

// Options: {"sortOrder": "alpha"}
/** */
function b() {}
/** */
function a() {}
/** */
class C {
/** */
b() {}
/** */
B() {}
/** */
a() {}
/** */
A() {}
}
/** */
class D {
/** */
b() {}
/** */
B() {}
/** */
a() {}
/** */
A() {}
}