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