You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/13 11:45:00 UTC

[5/7] git commit: [flex-asjs] [refs/heads/develop_strictest] - Disabled type checking on arguments of 'is()' and 'as()' entirely.

Disabled type checking on arguments of 'is()' and 'as()' entirely.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/56e2d7ce
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/56e2d7ce
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/56e2d7ce

Branch: refs/heads/develop_strictest
Commit: 56e2d7ce9360519afad53746d3260a08949ac8ad
Parents: 3ba9061
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Wed Nov 13 10:23:03 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Wed Nov 13 10:23:03 2013 +0100

----------------------------------------------------------------------
 .../js/FlexJS/src/org/apache/flex/utils/Language.js       | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/56e2d7ce/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 3a610dc..b605e93 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
@@ -27,11 +27,11 @@ org.apache.flex.utils.Language = function() {
  * as()
  *
  * @expose
- * @param {*} leftOperand The lefthand operand of the
+ * @param {?} leftOperand The lefthand operand of the
  *     binary as operator in AS3.
- * @param {*} rightOperand The righthand operand of the
+ * @param {?} rightOperand The righthand operand of the
  *     binary operator in AS3.
- * @return {*} Returns the lefthand operand if it is
+ * @return {?} Returns the lefthand operand if it is
  *     of the type of the righthand operand, otherwise null.
  */
 org.apache.flex.utils.Language.as = function(leftOperand, rightOperand) {
@@ -56,9 +56,9 @@ org.apache.flex.utils.Language._int = function(value) {
  * is()
  *
  * @expose
- * @param {*} leftOperand The lefthand operand of the
+ * @param {?} leftOperand The lefthand operand of the
  *     binary as operator in AS3.
- * @param {*} rightOperand The righthand operand of the
+ * @param {?} rightOperand The righthand operand of the
  *     binary operator in AS3.
  * @return {boolean}
  */