/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
- /**
- * Builtin object.
- * @class
- * @name Array
- */
-
- /**#@+
- * Extension to builtin array.
- * @memberOf Array
- * @method
- */
-
- /**
- * @returns Boolen if some array members...
- */
- Array.prototype.some = function(){};
- /**
- * Change every element of an array.
- * @returns Filtered array copy.
- */
- Array.prototype.filter = function(){};
- /**#@-*/
- /**
- * A first in, first out data structure.
- * @constructor
- */
- Queue = function(){};
- /**#@+
- * Extension to Queue.
- * @memberOf Queue
- */
- rewind = function(){
- }
- // should close automatically here.