memberoftag4.js 263 B

12345678910111213141516
  1. /**
  2. * Namespace doStuff.
  3. * @namespace doStuff
  4. */
  5. /**
  6. * Function with the same name as its namespace.
  7. * @memberof doStuff
  8. */
  9. function doStuff() {}
  10. /**
  11. * Function with a different name than the namespace.
  12. * @memberof doStuff
  13. */
  14. function doOtherStuff() {}