jsdoc/test/fixtures/memberoftag4.js

16 lines
263 B
JavaScript

/**
* Namespace doStuff.
* @namespace doStuff
*/
/**
* Function with the same name as its namespace.
* @memberof doStuff
*/
function doStuff() {}
/**
* Function with a different name than the namespace.
* @memberof doStuff
*/
function doOtherStuff() {}