PageRenderTime 22ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/jsdoc_toolkit-1.4.0/test/data/shared.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 32 lines | 3 code | 7 blank | 22 comment | 0 complexity | d58ac3e76b4ebfa1338f23e251348773 MD5 | raw file
  1. /**
  2. * Builtin object.
  3. * @class
  4. * @name Array
  5. */
  6. /**#@+
  7. * Extension to builtin array.
  8. * @memberOf Array
  9. * @method
  10. */
  11. /**
  12. * @returns Boolen if some array members...
  13. */
  14. Array.prototype.some = function(){};
  15. /**
  16. * Change every element of an array.
  17. * @returns Filtered array copy.
  18. */
  19. Array.prototype.filter = function(){};
  20. /**#@-*/
  21. /**
  22. * A first in, first out data structure.
  23. * @constructor
  24. */
  25. Queue = function(){};