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 2015/05/05 22:00:09 UTC

[2/3] git commit: [flex-falcon] [refs/heads/develop] - change to a wwarning

change to a wwarning


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

Branch: refs/heads/develop
Commit: bfe2c8e0aa50872d1de670d9029d9d5e76e1e3d9
Parents: d8a7111
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 5 12:59:23 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 5 12:59:23 2015 -0700

----------------------------------------------------------------------
 .../compiler/internal/codegen/databinding/WatcherAnalyzer.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/bfe2c8e0/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java b/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java
index 666efe6..35471f2 100644
--- a/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java
+++ b/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java
@@ -35,8 +35,8 @@ import org.apache.flex.compiler.definitions.IVariableDefinition;
 import org.apache.flex.compiler.internal.codegen.databinding.WatcherInfoBase.WatcherType;
 import org.apache.flex.compiler.internal.projects.FlexProject;
 import org.apache.flex.compiler.internal.tree.as.FunctionCallNode;
-import org.apache.flex.compiler.problems.AccessUndefinedPropertyProblem;
 import org.apache.flex.compiler.problems.ICompilerProblem;
+import org.apache.flex.compiler.problems.MXMLDatabindingSourceNotBindableProblem;
 import org.apache.flex.compiler.projects.ICompilerProject;
 import org.apache.flex.compiler.tree.ASTNodeID;
 import org.apache.flex.compiler.tree.as.IASNode;
@@ -279,7 +279,7 @@ public class WatcherAnalyzer
                         // may very well be a dynamic property with no definition,
                         // so will will continue on (with the knowledge that we have no
                         // IDefinition
-            this.problems.add(new AccessUndefinedPropertyProblem(node, node.getName()));
+            this.problems.add(new MXMLDatabindingSourceNotBindableProblem(node, node.getName()));
             return;
         }