Revision: 9709
Author: [email protected]
Date: Wed Feb  9 11:45:33 2011
Log: Quick patch, in follow up to r9344, which replaces remaining uses of the legacy 'compiler.emulatedStack' property,
with the corresponding 'compiler.stackMode'.

Fixes issues: 5692

Review at http://gwt-code-reviews.appspot.com/1338804

Review by: [email protected]
http://code.google.com/p/google-web-toolkit/source/detail?r=9709

Modified:
/trunk/samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/DynaTableRf.gwt.xml
 /trunk/user/src/com/google/gwt/benchmarks/Benchmarks.gwt.xml
 /trunk/user/src/com/google/gwt/junit/JUnit.gwt.xml
 /trunk/user/src/com/google/gwt/logging/server/StackTraceDeobfuscator.java

=======================================
--- /trunk/samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/DynaTableRf.gwt.xml Thu Oct 14 08:15:26 2010 +++ /trunk/samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/DynaTableRf.gwt.xml Wed Feb 9 11:45:33 2011
@@ -32,7 +32,7 @@
   <set-property name="gwt.logging.simpleRemoteHandler" value="DISABLED" />

<!-- Uncomment if you are enabling server side deobfuscation of StackTraces
-  <set-property name="compiler.emulatedStack" value="true" />
+  <set-property name="compiler.stackMode" value="emulated" />
<set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true" /> <set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true" />
   -->
=======================================
--- /trunk/user/src/com/google/gwt/benchmarks/Benchmarks.gwt.xml Mon Jun 7 12:20:31 2010 +++ /trunk/user/src/com/google/gwt/benchmarks/Benchmarks.gwt.xml Wed Feb 9 11:45:33 2011
@@ -26,7 +26,7 @@

   <!-- We do not want stack traces. -->
<set-configuration-property name="compiler.emulatedStack.recordFileNames" value="false" />
-  <set-property name="compiler.emulatedStack" value="false" />
+  <set-property name="compiler.stackMode" value="native" />

<generate-with class="com.google.gwt.benchmarks.rebind.BenchmarkGenerator"> <when-type-assignable class="com.google.gwt.benchmarks.client.Benchmark"/>
=======================================
--- /trunk/user/src/com/google/gwt/junit/JUnit.gwt.xml Thu Dec 9 04:33:35 2010 +++ /trunk/user/src/com/google/gwt/junit/JUnit.gwt.xml Wed Feb 9 11:45:33 2011
@@ -33,7 +33,7 @@

   <!-- We want to provide consistent stack traces across all browsers. -->
<set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true" />
-  <set-property name="compiler.emulatedStack" value="true" />
+  <set-property name="compiler.stackMode" value="emulated" />

<!-- Override the regular symbolMaps linker to put the data somewhere we can find it --> <define-linker name="symbolMaps" class="com.google.gwt.junit.linker.JUnitSymbolMapsLinker" />
=======================================
--- /trunk/user/src/com/google/gwt/logging/server/StackTraceDeobfuscator.java Mon Jan 24 18:37:39 2011 +++ /trunk/user/src/com/google/gwt/logging/server/StackTraceDeobfuscator.java Wed Feb 9 11:45:33 2011
@@ -31,7 +31,7 @@
 /**
* Deobfuscates stack traces on the server side. This class requires that you
  * have turned on emulated stack traces, via
- * <code>&lt;set-property name="compiler.emulatedStack" value="true" /&gt;</code> + * <code>&lt;set-property name="compiler.stackMode" value="emulated" /&gt;</code> * in your <code>.gwt.xml</code> module file, and moved your symbol map files to * a location accessible by your server sever side code. You can use the GWT * compiler <code>-deploy</code> command line argument to specify the location

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

Reply via email to