PageRenderTime 19ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/jsdoc_toolkit-1.3.3/test/data/virtual.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 53 lines | 9 code | 6 blank | 38 comment | 0 complexity | 0d520ec6f717a3fba03cf7fac3c3db60 MD5 | raw file
  1. /**
  2. * Twiddle the given flick.
  3. * @name twiddle.flick
  4. * @function
  5. * @param {flick} f
  6. */
  7. function zipZap(zID) { // <-- NOTICE: this is NOT the named object cited above!
  8. }
  9. /**
  10. * Join two str together.
  11. * @name Concat
  12. * @constructor
  13. * @param {String} strX The first string.
  14. * @param {String} strY The other string.
  15. */
  16. Builder.make({construct: "Concat", params: ['strX', 'strY']}); // <-- this won't be recognized.
  17. /**
  18. * Join two str together with a separator string.
  19. * @name join
  20. * @function
  21. * @memberOf Concat
  22. * @param {String} separator.
  23. */
  24. /**
  25. * The separator character.
  26. * @name separator
  27. * @type String
  28. * @type Array
  29. * @memberOf Concat
  30. */
  31. function Employee(id) {
  32. /**
  33. * id of the employee selected (could be logged user).
  34. * @name employeeId
  35. * @memberof Employee
  36. * @type String
  37. */
  38. self.applyField(this, "employeeId", "String");
  39. }
  40. var Document = {
  41. /**
  42. * Title of this document.
  43. * @name Document.title
  44. * @type String
  45. */
  46. id: generateId()
  47. }