mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
32 lines
267 B
JavaScript
32 lines
267 B
JavaScript
// Options: {"sortOrder": "alpha"}
|
|
|
|
/** */
|
|
function b() {}
|
|
|
|
/** */
|
|
function a() {}
|
|
|
|
/** */
|
|
class C {
|
|
/** */
|
|
b() {}
|
|
/** */
|
|
B() {}
|
|
/** */
|
|
a() {}
|
|
/** */
|
|
A() {}
|
|
}
|
|
|
|
/** */
|
|
class D {
|
|
/** */
|
|
b() {}
|
|
/** */
|
|
B() {}
|
|
/** */
|
|
a() {}
|
|
/** */
|
|
A() {}
|
|
}
|