/trunk/jsdoc-toolkit/app/test/shared.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 42 lines · 5 code · 10 blank · 27 comment · 0 complexity · df17a350800f43b89241ed66296dbd57 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(){};
  26. /**#@+
  27. * Extension to Queue.
  28. * @memberOf Queue
  29. */
  30. rewind = function(){
  31. }
  32. // should close automatically here.