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 2014/11/21 13:10:23 UTC

[03/17] git commit: [flex-falcon] [refs/heads/develop] - Use VF2JS variations on deps writer and GCC wrapper

Use VF2JS variations on deps writer and GCC wrapper

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


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

Branch: refs/heads/develop
Commit: 773774c0a23db7d3ad84e61b1ac38bc7415876f1
Parents: 16c4b3e
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Nov 21 11:40:53 2014 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Nov 21 11:40:53 2014 +0100

----------------------------------------------------------------------
 .../internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/773774c0/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java
index 3c44bd0..ef51e7d 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/vf2js/MXMLVF2JSPublisher.java
@@ -44,9 +44,9 @@ import org.apache.flex.compiler.config.Configuration;
 import org.apache.flex.compiler.internal.codegen.js.JSSharedData;
 import org.apache.flex.compiler.internal.codegen.js.goog.JSGoogPublisher;
 import org.apache.flex.compiler.internal.driver.js.goog.JSGoogConfiguration;
-import org.apache.flex.compiler.internal.graph.GoogDepsWriter;
+import org.apache.flex.compiler.internal.graph.VF2JSDepsWriter;
 import org.apache.flex.compiler.internal.projects.FlexJSProject;
-import org.apache.flex.compiler.utils.JSClosureCompilerWrapper;
+import org.apache.flex.compiler.utils.VF2JSClosureCompilerWrapper;
 
 public class MXMLVF2JSPublisher extends JSGoogPublisher implements
         IJSPublisher
@@ -182,9 +182,9 @@ public class MXMLVF2JSPublisher extends JSGoogPublisher implements
             FileUtils.copyDirectory(new File(closureGoogSrcLibDirPath), new File(closureGoogTgtLibDirPath));
         }
         
-        JSClosureCompilerWrapper compilerWrapper = new JSClosureCompilerWrapper();
+        VF2JSClosureCompilerWrapper compilerWrapper = new VF2JSClosureCompilerWrapper();
 
-        GoogDepsWriter gdw = new GoogDepsWriter(intermediateDir, projectName, (JSGoogConfiguration) configuration);
+        VF2JSDepsWriter gdw = new VF2JSDepsWriter(intermediateDir, projectName, (JSGoogConfiguration) configuration);
         try
         {
             StringBuilder depsFileData = new StringBuilder();