Revision: 7174
Author: [email protected]
Date: Tue Nov 24 19:27:05 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=7174

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

=======================================
---  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java   
 
Mon Oct 26 14:02:26 2009
+++  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java   
 
Tue Nov 24 19:27:05 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  
{
    /**
=======================================
---  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java   
 
Fri Oct 23 13:15:54 2009
+++  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/SplitPointRecorder.java   
 
Tue Nov 24 19:27:05 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 {
    /**
=======================================
---  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorder.java        
 
Mon Oct 26 14:02:26 2009
+++  
/trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorder.java        
 
Tue Nov 24 19:27:05 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 {

=======================================
--- /trunk/dev/core/src/com/google/gwt/dev/jjs/Correlation.java Fri May  1  
06:41:53 2009
+++ /trunk/dev/core/src/com/google/gwt/dev/jjs/Correlation.java Tue Nov 24  
19:27:05 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.
=======================================
--- /trunk/dev/core/src/com/google/gwt/dev/jjs/CorrelationFactory.java  Wed  
Oct 28 09:10:53 2009
+++ /trunk/dev/core/src/com/google/gwt/dev/jjs/CorrelationFactory.java  Tue  
Nov 24 19:27:05 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.
=======================================
--- /trunk/dev/core/src/com/google/gwt/dev/util/arg/OptionSoycDetailed.java     
 
Fri Oct 23 11:09:22 2009
+++ /trunk/dev/core/src/com/google/gwt/dev/util/arg/OptionSoycDetailed.java     
 
Tue Nov 24 19:27:05 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);
=======================================
--- /trunk/dev/core/src/com/google/gwt/soyc/CodeCollection.java Wed Oct 28  
09:10:53 2009
+++ /trunk/dev/core/src/com/google/gwt/soyc/CodeCollection.java Tue Nov 24  
19:27:05 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 {

=======================================
--- /trunk/dev/core/src/com/google/gwt/soyc/GlobalInformation.java      Wed Oct 
 
28 09:10:53 2009
+++ /trunk/dev/core/src/com/google/gwt/soyc/GlobalInformation.java      Tue Nov 
 
24 19:27:05 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];
=======================================
--- /trunk/dev/core/src/com/google/gwt/soyc/Settings.java       Wed Sep 30  
11:55:14 2009
+++ /trunk/dev/core/src/com/google/gwt/soyc/Settings.java       Tue Nov 24  
19:27:05 2009
@@ -22,7 +22,7 @@
  import java.util.List;

  /**
- * Command-line settings for SOYC.
+ * Command-line settings for Compile Reports (SOYC).
   */
  public class Settings {
    /**
=======================================
--- /trunk/dev/core/src/com/google/gwt/soyc/io/OutputDirectory.java     Wed Oct 
 
28 09:10:53 2009
+++ /trunk/dev/core/src/com/google/gwt/soyc/io/OutputDirectory.java     Tue Nov 
 
24 19:27:05 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