variationtag.js 253 B

12345678910111213141516171819202122
  1. /**
  2. * @constructor
  3. */
  4. someObject = function() {}
  5. /**
  6. * @constructor
  7. * @variation 2
  8. */
  9. someObject = function() {}
  10. /**
  11. * @constructor
  12. * @variation (3)
  13. */
  14. someObject = function() {};
  15. /**
  16. * @memberof someObject(2)
  17. */
  18. someMethod = function() {}