1. 670bcce Merge through trunk@6239 by rjrjr@google.com · 15 years ago
  2. 52ac42b Merge up to trunk @r6200. by jat@google.com · 15 years ago
  3. 7dc9b9e Another unused import snipped by rjrjr@google.com · 16 years ago
  4. 92e688e Snip unused imports, fix checkstyle break by rjrjr@google.com · 16 years ago
  5. 4e26cc6 Revert unnecessary change to GWTShellServlet, update Eclipse instructions by jat@google.com · 16 years ago
  6. b7e1d81 Fix checkstyle errors. by jat@google.com · 16 years ago
  7. 0b1619e Remove SWT, collapse dev platforms to a single one, rewrite runstyles to new by jat@google.com · 16 years ago
  8. bd5e9c6 Update from trunk by rjrjr@google.com · 16 years ago
  9. 3404283 Updates Soyc dashboard settings processing to be more flexible with respect to symbol maps format. In particular, it now includes leading lines in symbol maps files that do not conform to the # { ... } format. by kprobst@google.com · 16 years ago
  10. ddbecbc Allow naming a runAsync call using a class literal. There are now by spoon@google.com · 16 years ago
  11. c05c4d1 Eliminates some dead links from the Soyc dashboard when displayDependencies is off by kprobst@google.com · 16 years ago
  12. 45c43a6 Fixes bugs where a cloned JMethodCall fails to preserve an overridden return type. by scottb@google.com · 16 years ago
  13. b09f4fe Remove icons, add short text names for browser tabs in Swing UI. by jat@google.com · 16 years ago
  14. 24852bd Make the GWT compiler pluggable through an experimental "x.compiler.class" configuration property. by scottb@google.com · 16 years ago
  15. d462925 Give the hosted mode JavaScriptObject implementation class a public constructor so it can be instantiated without violating access. by scottb@google.com · 16 years ago
  16. a0b42eb Fix for issue 3535, whitelist/blacklist warnings suggest invalid argument by fredsa · 16 years ago
  17. 1d30610 Additional fix for issue 3903. Adds noscript tags to additional samples by fredsa · 16 years ago
  18. 11f740b Change the way tabs work in the OOPHM UI: by jat@google.com · 16 years ago
  19. d280650 Separates the ADD binary operation into two separate operations, by spoon@google.com · 16 years ago
  20. 78d3580 This patch moves SOYC's source code underneath dev/core/src. It leaves by spoon@google.com · 16 years ago
  21. a86be7e This patch removes the META-INF/services dir from xercesImpl.jar that by amitmanjhi@google.com · 16 years ago
  22. 9018eb1 Updates XML escaping for SOYC. Previously, some UTF-8 characters slipped through that are not allowed in XML, which caused the dashboard to crash. This fixes the problem. by kprobst@google.com · 16 years ago
  23. 8957a8c Correct a problem with showing the troubleshooting iframe, add support for by jat@google.com · 16 years ago
  24. eeed283 Formalize how default extensions are provided by ClientBundle resource types. by bobv@google.com · 16 years ago
  25. 344f1e6 Make Condition and Conditions Serializable so that they may work with multiple-worker builds. by bobv@google.com · 16 years ago
  26. e3c88de Adds a Text->Text transformation pass which sorts functions by size and clusters them by edit distance. It also integrates the IE7 block-size fix by introducing inner block scopes whenever 32767 top-level statements are added to the output. by cromwellian · 16 years ago
  27. 247a950 Rework stack trace emulation flag. by bobv@google.com · 16 years ago
  28. 4eee8e1 Implement conditional <set-property> module directives. by bobv@google.com · 16 years ago
  29. 3f93da5 Issue 3936: work around JDT by not computing CUD from scope chain. by scottb@google.com · 16 years ago
  30. 29857b9 Fixes a problem where the compiler did not emit dependency information by spoon@google.com · 16 years ago
  31. 28f568d Rollback to last green build, 5956 by rjrjr@google.com · 16 years ago
  32. 4b10f70 Added unary prefix '+' operator to AST to fix, Issue #3942. Modified Js code-gen to insert spaces in appropriate places to maintain correct precedence. (e.g. a+ +b should not become a++b) by cromwellian · 16 years ago
  33. 6b2986d Function Clustering, improves gzip compression by significant margin. Top-level block restructuring for IE7 is now done purely via a text-transformation, while in-method block restructuring is done via the AST. Block restructuring is only performed for IE permutations (or permutations with no user.agent specified). by cromwellian · 16 years ago
  34. 02288a7 Reverted for now as this appears to be causing a problem in some apps. by cromwellian · 16 years ago
  35. 04f6688 Fix for issue #3942. by cromwellian · 16 years ago
  36. f64afe2 Creates infrastructure to test individual compiler passes. by scottb@google.com · 16 years ago
  37. 611ede6 Add a tabKey to the LoadModule message so that we can differentiate between by jat@google.com · 16 years ago
  38. d41fe41 Fixes plugin backwards-compatibility fallback error in Safari. by jgw@google.com · 16 years ago
  39. 0663fb9 Hacky fix to not break tomcat when java 1.5 is used in presence of the xercesImpl lib. by amitmanjhi@google.com · 16 years ago
  40. e117264 Left out part of r5911. by jat@google.com · 16 years ago
  41. 4b8fce8 Update the OOPHM wire protocol for the following: by jat@google.com · 16 years ago
  42. 1f17bc3 Add Sets.addAll() utility method. Update to Maps.pulAll() per Scott. by bobv@google.com · 16 years ago
  43. 7fc3149 Fixes a build break on javac sun jdk1.6.0. Patch by: spoon, kprobst by kprobst@google.com · 16 years ago
  44. 678c695 A faster implementation of SOYC that by spoon@google.com · 16 years ago
  45. 4ee118b Duplicate line in JsContinue traverse method. by cromwellian · 16 years ago
  46. 5002ee6 Change JsScope to use LinkedHashMap instead of HashMap. This allows identifiers to be allocated obfuscated identifiers in the original order of their declaration, which produces a lot more common substrings in the obfuscated output which significantly improves gzip/deflate compression. Experimental Data using gzip -9 on cache.html files: by cromwellian · 16 years ago
  47. 93d6ede Enhancement Issue #2448, the first character of obfuscated identifiers can be chosen from a set of 54 safe characers, rather than just 32. Obfuscated Output code is reduced in size by 0.5-1.75%. Thanks to contributor andriasyan for the patch. by cromwellian · 16 years ago
  48. 5208661 Patch for Issue #3893. Labeled break or continue statements in JSNI methods were not properly obfuscated. This was caused because JsBreak and JsContinue do not traverse their labels when visited. by cromwellian · 16 years ago
  49. c75b127 Add Name classes that deal with various flavors of Java names, and some by jat@google.com · 16 years ago
  50. 7bc62b9 Fix for issue 3903. Adds a <noscript> tag to our *.html launch files so that we by fredsa · 16 years ago
  51. 4a84e88 Moving shell-based loggers into a shell subpackage. by scottb@google.com · 16 years ago
  52. 831b4d6 Moving StandardGeneratorContext out of hosted mode code; it's not hosted-mode specific. by scottb@google.com · 16 years ago
  53. 61b278f Remove CompilationUnit's dependency on hosted mode code. by scottb@google.com · 16 years ago
  54. 05ee233 Remove TypeOracle dependency on hosted mode code. by scottb@google.com · 16 years ago
  55. 124e301 Moving Jsni helper class into com.google.gwt.dev.shell with other hosted mode code. by scottb@google.com · 16 years ago
  56. 5417496 Removed unused import. by scottb@google.com · 16 years ago
  57. 43a8d0e Reapplying r5786 after roll-back. by scottb@google.com · 16 years ago
  58. 5b401bb Moves PermutationResult from com.google.gwt.dev to com.google.gwt.dev.jjs. by scottb@google.com · 16 years ago
  59. 12be341 Moves OptionLocalWorkers into the correct package. by scottb@google.com · 16 years ago
  60. f836625 The code splitter no longer pulls in extra class literal by spoon@google.com · 16 years ago
  61. 9076e42 Alter the compiler so that it will emit code that simulates the JS stack in order to provide stack traces on browsers that do not provide stack trace data for native exceptions. by bobv@google.com · 16 years ago
  62. acdf22d Change the way code-splitting and string interning is performed on the JS AST to allow new strings to be introduced by JsVisitors (such as JsStackEmulator). by bobv@google.com · 16 years ago
  63. 3309fbf Re-apply r5790 to improve accuracy of JsParser's SourceInfo objects. by bobv@google.com · 16 years ago
  64. 8bdbb45 Reapplying r5789 to remove warnings from JsParser. by bobv@google.com · 16 years ago
  65. a2bb640 Rolling back to the last known good state: r5776 by amitmanjhi@google.com · 16 years ago
  66. 4e19d05 JsParser now provides correct line numbers for JsExpressions derived from JSNI methads. by bobv@google.com · 16 years ago
  67. 3ab07ba Remove raw type warnings. by bobv@google.com · 16 years ago
  68. 801d2cd Fixes JsStackEmulator#baseName() so it handles urls and file system urls. Bob came up with the code. by jlabanca@google.com · 16 years ago
  69. 896f8ac Make declaration statements for the variables created in the catch block normalizer, instead of just assignment statements. by scottb@google.com · 16 years ago
  70. 0e539d5 Alter the compiler so that it will emit code that simulates the JS stack in order to provide stack traces on browsers that do not provide stack trace data for native exceptions. by bobv@google.com · 16 years ago
  71. 6c2c0be Adds some needed JTypeOracle javadoc. by scottb@google.com · 16 years ago
  72. 53345a1 Fixes internal type hierarchy for overlay types. by scottb@google.com · 16 years ago
  73. 2e4a1bc rollback of r5755, we still have some outstanding asserts... I'd thought they were proxy-induced in my setup, since they hadn't shown before, but not so. by fabbott@google.com · 16 years ago
  74. 81031ca Fix incorrect computation in JTypeOracle.computeSingleJsoImplData() which to include super-interfaces when determining if an interface is a tag interface. by bobv@google.com · 16 years ago
  75. 6020c61 Reinstating assertions default on in web tests, with -da to turn it off, from r5726, but this time with test fixes for IE-specific assertion trips. by fabbott@google.com · 16 years ago
  76. 4826b8d Checkstyle comment fixes (period on first sentence, a few extra @params). by fabbott@google.com · 16 years ago
  77. 059493f Adds a test for AsyncFragmentLoader. by spoon@google.com · 16 years ago
  78. 243e8b7 revert of 5626 by fabbott@google.com · 16 years ago
  79. 11d2df2 Ensure that a <define-linker> after an <add-linker> will correctly replace the previously-defined implementation. by bobv@google.com · 16 years ago
  80. ad9bbd1 Adding -da flag to disable assertions, and flipping the default for tests by fabbott@google.com · 16 years ago
  81. 33e60a2 Reverting XHR changes to the std (iframe) linker. by jgw@google.com · 16 years ago
  82. 2093290 Fix for Issue #3796, "syntax error due to inlining of numeric literal into jsni function". Field or method references on numeric literals only work if the numeric literal is surrounded by parentheses or has a space. "42.foo" is not legal, but "(42).foo" and "42 .foo" are. by cromwellian · 16 years ago
  83. 5570aff Remove trailing parentheses from "new Constructor()" expressions. See http://code.google.com/p/google-web-toolkit/wiki/NewParenthesisRemovalOptimization by cromwellian · 16 years ago
  84. 7c22d7e Assign a precendence to JsNameOf AST nodes. by bobv@google.com · 16 years ago
  85. 7795381 Fixing a checkstyle complaint by spoon@google.com · 16 years ago
  86. 06109fa Has SOYC show dependency information for all of the dependency by spoon@google.com · 16 years ago
  87. a1fc730 Add @ArtificialRescue annotation to the GWT compiler. by bobv@google.com · 16 years ago
  88. 40cb7d9 Implement RPC for JDO persistent objects. by rice@google.com · 16 years ago
  89. 1f2c1e8 Adds permutation number to symbol maps. This permutation number is currently used by SOYC to retrieve information about each permutation's properties. by kprobst@google.com · 16 years ago
  90. 5974608 Roll back r5662. The overlay of WeakMapping is confusing the apicheck-nobuild target. by rice@google.com · 16 years ago
  91. f827050 Implement RPC for JDO persistent objects. by rice@google.com · 16 years ago
  92. 34fda23 Fixes issue #3700, avoids unnecessary copy of resources with up-to-date timestamps. by scottb@google.com · 16 years ago
  93. 9e6b58a Fix a couple of tiny checkstyle violations. by rice@google.com · 16 years ago
  94. 6f302b4 Add Impl.getNameOf() to expose JNameOf nodes to Java code. by bobv@google.com · 16 years ago
  95. 6335565 Fixes hosted.html to decode the gwt.hosted part of the url. by jgw@google.com · 16 years ago
  96. 82c35fb Fix JsInliner for mutually-recursive functions. by bobv@google.com · 16 years ago
  97. e80d2f8 Add getJsniSignature() to JAbstractMethod as a convenience for Generator developers. by bobv@google.com · 16 years ago
  98. 669f14a Add typeId information to linker SymbolData API. by bobv@google.com · 16 years ago
  99. 71d1000 A one-line fix to the currently broken support for a runAsync initial by spoon@google.com · 16 years ago
  100. b39b79c Add an escape hatch to CompilingClassLoader to allow individual "client" classes to be loaded from bytecode on the classpath and escape the module's source path jail. by bobv@google.com · 16 years ago