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 2013/10/08 23:50:05 UTC

[05/14] git commit: [flex-falcon] [refs/heads/develop] - handle binding to non-public entities

handle binding to non-public entities


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

Branch: refs/heads/develop
Commit: e25f8453669ee681395c1bd13d6a123088d520f8
Parents: 2ec7343
Author: Alex Harui <ah...@apache.org>
Authored: Wed Oct 2 20:49:55 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Oct 8 13:50:57 2013 -0700

----------------------------------------------------------------------
 .../flex/compiler/internal/codegen/databinding/BindingInfo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e25f8453/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/BindingInfo.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/BindingInfo.java b/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/BindingInfo.java
index 62e2b2a..daf1fc6 100644
--- a/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/BindingInfo.java
+++ b/compiler/src/org/apache/flex/compiler/internal/codegen/databinding/BindingInfo.java
@@ -103,7 +103,7 @@ public class BindingInfo implements Comparable<BindingInfo>
         
         // now attempt to make a destination function and a destination string
         // for the binding.
-        expressionNodeForSetter = BindingDestinationMaker.makeDestinationFunctionInstructionList(dbnode);
+        expressionNodeForSetter = BindingDestinationMaker.makeDestinationFunctionInstructionList(dbnode, host);
         destinationString = findDestinationString(dbnode, host);
         
         finishInit(host);