Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Jaun2013-10-29 17:27:10 +0000
committerChris Jaun2013-10-29 17:27:10 +0000
commit5d1398ce08b61b1d6aa5bd88ea467738aeeb50da (patch)
tree1f818756056a6cc185b18d2e39388c405e9104cd
parent8650d5cd21dfbd40640d5f59991eadc0a458c290 (diff)
downloadwebtools.maps-5d1398ce08b61b1d6aa5bd88ea467738aeeb50da.tar.gz
webtools.maps-5d1398ce08b61b1d6aa5bd88ea467738aeeb50da.tar.xz
webtools.maps-5d1398ce08b61b1d6aa5bd88ea467738aeeb50da.zip
[414411] Errors in system.js
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/libraries/system.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/libraries/system.js b/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
index adcea3f64..2066ffbc7 100644
--- a/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
+++ b/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
@@ -477,14 +477,14 @@ Array.prototype.sort = function(funct){return [];};
Array.prototype.splice = function(start, deletecount, items){return [];};
/**
* function unshift(items)
- * @param {Array} start
- * @returns {Array}
+ * @param {Object} values
+ * @returns {Number}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
-Array.prototype.unshift = function(start){return [];};
+Array.prototype.unshift = function(values){return 1;};
/**
* Object Function()

Back to the top