jsdoc/test/fixtures/variationtag.js

22 lines
253 B
JavaScript

/**
* @constructor
*/
someObject = function() {}
/**
* @constructor
* @variation 2
*/
someObject = function() {}
/**
* @constructor
* @variation (3)
*/
someObject = function() {};
/**
* @memberof someObject(2)
*/
someMethod = function() {}