aliasglobal2.js 333 B

123456789101112131415161718
  1. (function () {
  2. /**
  3. * Creates a new test object.
  4. * @alias Test
  5. * @constructor
  6. */
  7. var Test = function(testName) {
  8. /** Document me. */
  9. this.name = testName;
  10. }
  11. /** Document me. */
  12. Test.prototype.run = function(message) {
  13. };
  14. /** Document me. */
  15. Test.counter = 1;
  16. })();