mirror of
https://github.com/documentationjs/documentation.git
synced 2025-12-08 18:23:43 +00:00
40 lines
589 B
JavaScript
40 lines
589 B
JavaScript
/**
|
|
* This function is first
|
|
*/
|
|
function first() {}
|
|
|
|
/** */
|
|
class AClass {
|
|
/**
|
|
* forgot a memberof here... sure hope that doesn't crash anything!
|
|
* @method first
|
|
*/
|
|
first(x, y) {}
|
|
|
|
/**
|
|
* shares a name with a top level item referenced in the TOC... sure hope
|
|
* that doesn't crash anything!
|
|
*/
|
|
second() {}
|
|
}
|
|
|
|
/**
|
|
* This class has some members
|
|
*/
|
|
function second() {}
|
|
|
|
/**
|
|
* second::foo
|
|
*/
|
|
second.prototype.foo = function(pork) {};
|
|
|
|
/**
|
|
* second::bar
|
|
*/
|
|
second.prototype.bar = function(beans, rice) {};
|
|
|
|
/**
|
|
* This function is third
|
|
*/
|
|
function third() {}
|