mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
32 lines
269 B
JavaScript
32 lines
269 B
JavaScript
// Options: {"sortOrder": ["alpha"]}
|
|
|
|
/** */
|
|
function b() {}
|
|
|
|
/** */
|
|
function a() {}
|
|
|
|
/** */
|
|
class C {
|
|
/** */
|
|
b() {}
|
|
/** */
|
|
B() {}
|
|
/** */
|
|
a() {}
|
|
/** */
|
|
A() {}
|
|
}
|
|
|
|
/** */
|
|
class D {
|
|
/** */
|
|
b() {}
|
|
/** */
|
|
B() {}
|
|
/** */
|
|
a() {}
|
|
/** */
|
|
A() {}
|
|
}
|