Revision: 7173
Author: [email protected]
Date: Tue Nov 24 19:17:19 2009
Log: Changing mentions of SOYC to Compile Report (in comments,  
documentation, and compiler output).

Review by: spoon (TBR)


http://code.google.com/p/google-web-toolkit/source/detail?r=7173

Modified:
   
/releases/2.0/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardCompilationAnalysis.java
   
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java
   
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java
   
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorder.java
  /releases/2.0/dev/core/src/com/google/gwt/core/linker/SoycReportLinker.java
  /releases/2.0/dev/core/src/com/google/gwt/dev/jjs/Correlation.java
  /releases/2.0/dev/core/src/com/google/gwt/dev/jjs/CorrelationFactory.java
   
/releases/2.0/dev/core/src/com/google/gwt/dev/util/arg/OptionSoycDetailed.java
  /releases/2.0/dev/core/src/com/google/gwt/soyc/CodeCollection.java
  /releases/2.0/dev/core/src/com/google/gwt/soyc/GlobalInformation.java
  /releases/2.0/dev/core/src/com/google/gwt/soyc/Settings.java
  /releases/2.0/dev/core/src/com/google/gwt/soyc/io/OutputDirectory.java

=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardCompilationAnalysis.java
  
Wed Sep 30 11:55:14 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardCompilationAnalysis.java
  
Tue Nov 24 19:17:19 2009
@@ -29,7 +29,7 @@
  public class StandardCompilationAnalysis extends CompilationAnalysis {

    /**
-   * A SOYC artifact. The existence of this class is an implementation  
detail.
+   * A Compile Report artifact. The existence of this class is an  
implementation detail.
     */
    public static class SoycArtifact extends SyntheticArtifact {
      public SoycArtifact(String partialPath, byte[] bytes) {
=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java
     
Wed Nov  4 06:59:39 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java
     
Tue Nov 24 19:17:19 2009
@@ -31,7 +31,7 @@
  import java.util.zip.GZIPOutputStream;

  /**
- * The control-flow dependency recorder for SOYC.
+ * The control-flow dependency recorder for Compile Report.
   */
  public class DependencyRecorder implements MultipleDependencyGraphRecorder  
{
    /**
=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java
     
Thu Oct 29 07:49:45 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java
     
Tue Nov 24 19:17:19 2009
@@ -30,7 +30,7 @@
  import java.util.zip.GZIPOutputStream;

  /**
- * Records split points to a file for SOYC reports.
+ * Records split points to a file for Compile Reports.
   */
  public class SplitPointRecorder {
    /**
=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorder.java 
 
Wed Nov  4 06:59:39 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorder.java 
 
Tue Nov 24 19:17:19 2009
@@ -47,7 +47,7 @@
  import java.util.zip.GZIPOutputStream;

  /**
- * Records {...@link Story}s to a file for SOYC.
+ * Records {...@link Story}s to a file for Compile Reports.
   */
  public class StoryRecorder {

=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/core/linker/SoycReportLinker.java     
 
Mon Nov 23 07:38:58 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/core/linker/SoycReportLinker.java     
 
Tue Nov 24 19:17:19 2009
@@ -37,7 +37,7 @@
  import java.util.TreeMap;

  /**
- * Converts SOYC report files into emitted private artifacts.
+ * Converts Compile Report files into emitted private artifacts.
   */
  @LinkerOrder(Order.POST)
  public class SoycReportLinker extends Linker {
=======================================
--- /releases/2.0/dev/core/src/com/google/gwt/dev/jjs/Correlation.java  Fri  
May  1 06:41:53 2009
+++ /releases/2.0/dev/core/src/com/google/gwt/dev/jjs/Correlation.java  Tue  
Nov 24 19:17:19 2009
@@ -31,8 +31,8 @@
  public final class Correlation implements Serializable {
    /*
     * NB: The Correlation type uses AST nodes in its factory methods to  
make it
-   * easier to extract whatever information we want to include in the SOYC
-   * reports without having to update call sites with additional  
parameters.
+   * easier to extract whatever information we want to include in the  
Compile
+   * Reports without having to update call sites with additional  
parameters.
     *
     * In the general case, references to AST nodes should not be exposed to  
any
     * public-API consumers of the Correlation.
=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/dev/jjs/CorrelationFactory.java       
 
Mon Nov  2 12:44:54 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/dev/jjs/CorrelationFactory.java       
 
Tue Nov 24 19:17:19 2009
@@ -92,8 +92,8 @@
    public static final class RealCorrelationFactory extends  
CorrelationFactory {
      /*
       * NB: The Correlation type uses AST nodes in its factory methods to  
make it
-     * easier to extract whatever information we want to include in the  
SOYC
-     * reports without having to update call sites with additional  
parameters.
+     * easier to extract whatever information we want to include in the  
Compile
+     * Reports without having to update call sites with additional  
parameters.
       *
       * In the general case, references to AST nodes should not be exposed  
to any
       * public-API consumers of the Correlation.
=======================================
---  
/releases/2.0/dev/core/src/com/google/gwt/dev/util/arg/OptionSoycDetailed.java  
 
Thu Oct 29 08:04:17 2009
+++  
/releases/2.0/dev/core/src/com/google/gwt/dev/util/arg/OptionSoycDetailed.java  
 
Tue Nov 24 19:17:19 2009
@@ -16,23 +16,23 @@
  package com.google.gwt.dev.util.arg;

  /**
- * Option to request extra SOYC output at the expense of more compile time.
+ * Option to request extra Compile Report (SOYC) output at the expense of  
more compile time.
   */
  public interface OptionSoycDetailed {

    /**
-   * Returns true if the compiler should record and emit extra SOYC  
information.
+   * Returns true if the compiler should record and emit extra Compile  
Report information.
     */
    boolean isSoycExtra();

    /**
-   * Sets whether or not the compiler should record and emit SOYC  
information
+   * Sets whether or not the compiler should record and emit Compile  
Report information
     * and build the dashboard.
     */
    void setSoycEnabled(boolean enabled);

    /**
-   * Sets whether or not the compiler should record and emit extra SOYC
+   * Sets whether or not the compiler should record and emit extra Compile  
Report
     * information.
     */
    void setSoycExtra(boolean soycExtra);
=======================================
--- /releases/2.0/dev/core/src/com/google/gwt/soyc/CodeCollection.java  Mon  
Nov  2 12:44:54 2009
+++ /releases/2.0/dev/core/src/com/google/gwt/soyc/CodeCollection.java  Tue  
Nov 24 19:17:19 2009
@@ -19,8 +19,8 @@
  import java.util.TreeSet;

  /**
- * Holds a set of all classes in a SOYC report, and can calculate size  
summaries
- * for them.
+ * Holds a set of all classes in a Compile Report, and can calculate size
+ * summaries for them.
   */
  public class CodeCollection {

=======================================
--- /releases/2.0/dev/core/src/com/google/gwt/soyc/GlobalInformation.java       
 
Mon Nov  2 12:44:54 2009
+++ /releases/2.0/dev/core/src/com/google/gwt/soyc/GlobalInformation.java       
 
Tue Nov 24 19:17:19 2009
@@ -25,7 +25,7 @@
  import java.util.TreeSet;

  /**
- * SOYC information about a compiled module.
+ * Compile Report information about a compiled module.
   */
  public class GlobalInformation {
    private static final SizeBreakdown[] EMPTY_SIZE_BREAKDOWN = new  
SizeBreakdown[0];
=======================================
--- /releases/2.0/dev/core/src/com/google/gwt/soyc/Settings.java        Wed Sep 
30  
11:55:14 2009
+++ /releases/2.0/dev/core/src/com/google/gwt/soyc/Settings.java        Tue Nov 
24  
19:17:19 2009
@@ -22,7 +22,7 @@
  import java.util.List;

  /**
- * Command-line settings for SOYC.
+ * Command-line settings for Compile Reports (SOYC).
   */
  public class Settings {
    /**
=======================================
--- /releases/2.0/dev/core/src/com/google/gwt/soyc/io/OutputDirectory.java      
 
Mon Nov  2 12:44:54 2009
+++ /releases/2.0/dev/core/src/com/google/gwt/soyc/io/OutputDirectory.java      
 
Tue Nov 24 19:17:19 2009
@@ -19,8 +19,8 @@
  import java.io.OutputStream;

  /**
- * An abstraction over output directories. The SOYC dashboard writes to  
this
- * interface so that it can, depending on how it is invoked, both write to  
the
+ * An abstraction over output directories. The Compile Report dashboard  
writes to
+ * this interface so that it can, depending on how it is invoked, both  
write to the
   * filesystem and generate GWT compiler artifacts.
   */
  public interface OutputDirectory {

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to