You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/04/06 17:02:52 UTC

[43/50] git commit: [flex-falcon] [refs/heads/master] - fix missing Array constants. The cross-compiler generates the value as an inlined constant

fix missing Array constants.  The cross-compiler generates the value as an inlined constant


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/0d4d8711
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/0d4d8711
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/0d4d8711

Branch: refs/heads/master
Commit: 0d4d871178f554617d552c00d1afa43093c18e7a
Parents: bc9edf3
Author: Alex Harui <ah...@apache.org>
Authored: Sun Mar 20 22:16:57 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Mar 21 21:01:44 2016 -0700

----------------------------------------------------------------------
 externs/js/missing.js | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0d4d8711/externs/js/missing.js
----------------------------------------------------------------------
diff --git a/externs/js/missing.js b/externs/js/missing.js
index c0241d4..aedd69f 100644
--- a/externs/js/missing.js
+++ b/externs/js/missing.js
@@ -179,31 +179,31 @@ var console;
  * @type {number}
  * @const
  */
-Array.CASEINSENSITIVE = 1;
+Array.CASEINSENSITIVE;
 
 /**
  * @type {number}
  * @const
  */
-Array.DESCENDING = 2;
+Array.DESCENDING;
 
 /**
  * @type {number}
  * @const
  */
-Array.UNIQUESORT = 4;
+Array.UNIQUESORT;
 
 /**
  * @type {number}
  * @const
  */
-Array.RETURNINDEXEDARRAY = 8;
+Array.RETURNINDEXEDARRAY;
 
 /**
  * @type {number}
  * @const
  */
-Array.NUMERIC = 16;
+Array.NUMERIC;
 
 
 /**
@@ -223,25 +223,25 @@ Array.prototype.removeAt = function(index) {};
  * @type {number}
  * @const
  */
-int.MAX_VALUE = 2147483648;
+int.MAX_VALUE;
 
 
 /**
  * @type {number}
  * @const
  */
-int.MIN_VALUE = -2147483648;
+int.MIN_VALUE;
 
 
 /**
  * @type {number}
  * @const
  */
-uint.MAX_VALUE = 4294967295;
+uint.MAX_VALUE;
 
 
 /**
  * @type {number}
  * @const
  */
-uint.MIN_VALUE = 0;
+uint.MIN_VALUE;