MaketRandevu/rsc/scripts/jsdoc/test/fixtures/aliasglobal2.js
2013-07-02 17:20:39 +00:00

18 lines
No EOL
337 B
JavaScript

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