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:09 UTC

[09/14] git commit: [flex-falcon] [refs/heads/develop] - move chasing of embeds so that dependencies get resolved correctly

move chasing of embeds so that dependencies get resolved correctly


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

Branch: refs/heads/develop
Commit: a862e39b87ed5067f1765152afdad7a70ae768dd
Parents: c5ea8ec
Author: Alex Harui <ah...@apache.org>
Authored: Wed Oct 2 20:53:58 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Oct 8 13:50:58 2013 -0700

----------------------------------------------------------------------
 .../apache/flex/compiler/internal/units/ASCompilationUnit.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/a862e39b/compiler/src/org/apache/flex/compiler/internal/units/ASCompilationUnit.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/internal/units/ASCompilationUnit.java b/compiler/src/org/apache/flex/compiler/internal/units/ASCompilationUnit.java
index cb97c0d..5ce596a 100644
--- a/compiler/src/org/apache/flex/compiler/internal/units/ASCompilationUnit.java
+++ b/compiler/src/org/apache/flex/compiler/internal/units/ASCompilationUnit.java
@@ -542,10 +542,10 @@ public class ASCompilationUnit extends CompilationUnitBase
 
         Collection<ICompilerProblem> problems = new ArrayList<ICompilerProblem>();
 
-        updateEmbedCompilationUnitDependencies(fn.getEmbedNodes(), problems);
-
         getABCBytesRequest().get();
 
+        updateEmbedCompilationUnitDependencies(fn.getEmbedNodes(), problems);
+
         IOutgoingDependenciesRequestResult result = new IOutgoingDependenciesRequestResult()
         {
             @Override