aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/shared.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jsdoc-toolkit-2.4.0/app/test/shared.js')
-rw-r--r--tools/jsdoc-toolkit-2.4.0/app/test/shared.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/tools/jsdoc-toolkit-2.4.0/app/test/shared.js b/tools/jsdoc-toolkit-2.4.0/app/test/shared.js
new file mode 100644
index 0000000..e1c277a
--- /dev/null
+++ b/tools/jsdoc-toolkit-2.4.0/app/test/shared.js
@@ -0,0 +1,42 @@
+
+/**
+ * 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. \ No newline at end of file