You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2017/05/21 16:37:10 UTC

[07/10] git commit: [flex-asjs] [refs/heads/develop] - make nested if statements a little more readable

make nested if statements a little more readable


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

Branch: refs/heads/develop
Commit: 43dab1d5a9137b87ffcfa5389707cd50e3f30041
Parents: f58e968
Author: Justin Mclean <jm...@apache.org>
Authored: Sun May 21 07:43:40 2017 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun May 21 07:43:40 2017 +1000

----------------------------------------------------------------------
 .../org/apache/flex/core/SimpleCSSValuesImpl.as | 26 +++++++++-----------
 1 file changed, 11 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/43dab1d5/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
index 4b67cae..d797172 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
@@ -219,15 +219,12 @@ package org.apache.flex.core
                     */
                     var mq:String = null;
                     var o:Object;
-                    if (i < n - 2)
+                    // peek ahead to see if there is a media query
+                    if (i < n - 2 && arr[i + 1] === CSSClass.CSSMediaQuery)
                     {
-                        // peek ahead to see if there is a media query
-                        if (arr[i + 1] === CSSClass.CSSMediaQuery)
-                        {
-                            mq = arr[i + 2];
-                            i += 2;
-                            declarationName = mq + "_" + declarationName;
-                        }
+                        mq = arr[i + 2];
+                        i += 2;
+                        declarationName = mq + "_" + declarationName;
                     }
                     var finalName:String;
                     var valuesFunction:Function;
@@ -665,7 +662,7 @@ package org.apache.flex.core
          *  @playerversion AIR 2.6
          *  @productversion FlexJS 0.0
          */
-        public static var inheritingStyles:Object = {
+        public static const inheritingStyles:Object = {
             "color" : 1,
             "fontFamily" : 1,
             "fontSize" : 1,
@@ -677,7 +674,7 @@ package org.apache.flex.core
          * The styles that apply to each UI widget
          */
         COMPILE::JS
-        public static var perInstanceStyles:Object = {
+        public static const perInstanceStyles:Object = {
             'backgroundColor': 1,
             'backgroundImage': 1,
             'color': 1,
@@ -692,7 +689,7 @@ package org.apache.flex.core
          * The styles that use color format #RRGGBB
          */
         COMPILE::JS
-        public static var colorStyles:Object = {
+        public static const colorStyles:Object = {
             'backgroundColor': 1,
             'borderColor': 1,
             'color': 1
@@ -702,7 +699,7 @@ package org.apache.flex.core
          * The styles that can use raw numbers
          */
         COMPILE::JS
-        public static var numericStyles:Object = {
+        public static const numericStyles:Object = {
             'fontWeight': 1
         };
         
@@ -711,7 +708,7 @@ package org.apache.flex.core
          * The properties that enumerate that we skip
          */
         COMPILE::JS
-        public static var skipStyles:Object = {
+        public static const skipStyles:Object = {
             'constructor': 1
         };
         
@@ -748,8 +745,7 @@ package org.apache.flex.core
                     else
                         value = value.toString() + 'px';
                 }
-                else if (p === 'backgroundImage') {
-                    if (p.indexOf('url') !== 0)
+                else if (p === 'backgroundImage' && p.indexOf('url') !== 0) {
                         value = 'url(' + value + ')';
                 }
                 (thisObject.element as HTMLElement).style[p] = value;