node-query/node_modules/jsdoc/test/fixtures/aliasglobal2.js

18 lines
337 B
JavaScript
Raw Normal View History

2014-10-20 16:56:45 -04:00
(function () {
/**
* Creates a new test object.
* @alias Test
* @constructor
*/
var Test = function(testName) {
/** Document me. */
this.name = testName;
}
/** Document me. */
Test.prototype.run = function(message) {
};
/** Document me. */
Test.counter = 1;
})();