Something doesn't like the use of 'int' as a member of 'Language', changed it to '_int'.
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/de4222b4 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/de4222b4 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/de4222b4 Branch: refs/heads/develop Commit: de4222b4f4f8fc6cd0966f90305ef8bd77620710 Parents: 28c8ac3 Author: Erik de Bruin <[email protected]> Authored: Fri Nov 1 12:31:13 2013 +0100 Committer: Erik de Bruin <[email protected]> Committed: Fri Nov 1 12:31:13 2013 +0100 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/de4222b4/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js index 94da9ca..2f2edeb 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js @@ -53,7 +53,7 @@ org.apache.flex.utils.Language.as = function(leftOperand, rightOperand) { * @param {*} value The value to be cast. * @return {number} */ -org.apache.flex.utils.Language.int = function(value) { +org.apache.flex.utils.Language._int = function(value) { return value >> 0; };
