documentation/__tests__/fixture/sections.input.js
2017-09-04 19:25:40 -04:00

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