- 902f46c Updates TypeOracleBuilder from r1654 to use Class.asSubclass to cast Class<?> to Class<? extends Annotation>. by gwt.team.mmendez · 17 years ago
- 0f4b6d2 Add an explicit check for the toString function for compatibility with IE <object> elements. by gwt.team.bobv · 17 years ago
- 5920cdd Updated TypeOracleBuilder to allow initializing annotation values from constant fields such as Long.MAX_VALUE and from constant conditional expressions. I renamed evaluateExpression to evaluateConstantExpression to more closely reflect its purpose. The annotation test cases were updated to check for these new cases. by gwt.team.mmendez · 17 years ago
- 0c72484 Improves JUnit's local web test performance by setting the user-agent property to exactly the single value required by the running hosted browser. This means one single permutation is created, instead of the current total, based on the number of user-agents defined in UserAgent.gwt.xml. by gwt.team.scottb · 17 years ago
- 1ba8217 - Removed some virtual overrides wonkiness with a helper method in JTypeOracle by gwt.team.scottb · 17 years ago
- e9f860e Fixes two very subtle bugs in TypeTightener: by gwt.team.scottb · 17 years ago
- 0628843 Prevents another type of inlining recursion sickness in the compiler. by gwt.team.scottb · 17 years ago
- c2155aa Cleaned up some code for 1.5. Also tweaked the JMethodBody.toString() for better debugging experience. by gwt.team.scottb · 17 years ago
- 18db14e The current solution of passing a bunch of boolean parameters around is getting unwieldy. I've refactored all this stuff out into a class to encapsulate the compiler options. Then when we add new options, we can do so with a minimal amount of code. by gwt.team.scottb · 17 years ago
- fc0e89d Java 1.5 generification of JTypeOracle. by gwt.team.scottb · 17 years ago
- 46dd2ea Fixes a problem in the pruner where removing parameters from a method where a caller has "extra" parameters would cause an ICE. by gwt.team.scottb · 17 years ago
- cb22dbb Adds a -validateOnly flag to the compiler, which ensures that all code on the source path is translatable and there are no errors in deferred binding, but does not produce any output. by gwt.team.scottb · 17 years ago
- aba2d27 1) Adds a test to MiscellaneousTest to ensure that virtual dispatch to String works correctly. by gwt.team.scottb · 17 years ago
- 13c52d1 The currently implementation of resource generation is kind of borked. If you attempt to generate a file that exists on the public path, the generated file will "win" in the compiler output folder. However, the shell servlet will always serve the version off of the public path, creating an inconsistency. Another problem with the current system is that files from a previous compilation sitting in the output folder will actually prevent a generator from creating new files. by gwt.team.scottb · 17 years ago
- 34da478 Somehow I was trying to index "Sequence" rather than "CharSequence". by gwt.team.scottb · 17 years ago
- 3fd3ac0 Missed an erasure case in the compiler. by gwt.team.scottb · 17 years ago
- 79936ae Fixes a bad assumption in TypeTightener that the first argument of a static impl is always the this argument. Adds explicit metadata to such a parameter. by gwt.team.scottb · 17 years ago
- 8d5f111 Adds the ant-style filtering to the source and super-source elements of the module XML file. by gwt.team.scottb · 17 years ago
- 57e8f58 Tweaks to r1590, mostly formatting. by gwt.team.scottb · 17 years ago
- 5d81c10 Fixes issue #1907. Puts parentheses around a comma expression that appears inside of an object literal. Also adds tests to ensure correctness. by gwt.team.scottb · 17 years ago
- cab1cd8 Inner classes of parameterized types were failing to resolve because the lookup name included the type parameter information. Updated to use the constantPool name for local types and the compound name for all others. by gwt.team.mmendez · 17 years ago
- 59d7d02 JArrayType.getSuperclass() should always return java.lang.Object. by gwt.team.mmendez · 17 years ago
- a75d876 Adds support for Class.getSuperclass() needed to implement Enum.getDeclaringClass(). The corresponding test cases were updated accordingly. by gwt.team.mmendez · 17 years ago
- de1f04a Fixes annotations that reference class literals; we were refencing the resolved type of the annotation value instead of its target type. The annotation unit test was updated to test this case and it was added to the TypeOracle test suite. by gwt.team.mmendez · 17 years ago
- 10950f5 Fixes ThreadLocalTreeLoggerProxy nesting problems by explicitly pushing and popping state. by gwt.team.scottb · 17 years ago
- 88456a5 This patch adds a new flag -XdisableAggressiveOptimization to the compiler and hosted-mode shell that will disable MethodInliner and JsInliner. by gwt.team.scottb · 17 years ago
- ad2f5dc This patch updates the isAssignableFrom and isAssignableTo methods on the different TypeOracle types to complete their corresponding contracts. For example, JTypeParameters were not enforcing the constraint of all of their bounds and JRealClassTypes were only considering types that appeared explicitly in its type hierachy. by gwt.team.mmendez · 17 years ago
- a5d865f Updates the TypeOracleBuilder to create generic types for local types whose enclosing method declares type parameters. Prior to this change, users could encounter an assertion failure from JParameterizedType line 313. by gwt.team.mmendez · 17 years ago
- fe4a1af Fixes a ClassCastException in the TypeOracle. JDT was using a parameterized type binding to reference a non-generic, static inner class of a generic type. by gwt.team.mmendez · 17 years ago
- 1b5bd92 Fixed for problems caused by r1555. The problem was that doing an arrayList.add(Element) would not wrap the element going into JSNI, and the object would fail a dynamic type check upon retrieval. by gwt.team.scottb · 17 years ago
- 1c509ea Remove synthetic clinit calls that are now empty. by gwt.team.scottb · 17 years ago
- 4c1f949 Tightened up clinit computation. by gwt.team.scottb · 17 years ago
- 15f7b75 JLocalDeclarationStatements were erroneously keeping locals from being pruned. We can now correctly prune locals. by gwt.team.scottb · 17 years ago
- a34b6db Make JsVars implement Iterable. by gwt.team.bobv · 17 years ago
- b9281df Code gen optimization: only emit clinit() calls into static methods that can possibly be the target of a cross-class call. by gwt.team.scottb · 17 years ago
- 8a67435 Fixes a problem where inlining an JS method with no return statement fails to evaluate to "undefined". by gwt.team.scottb · 17 years ago
- 2b1a4d5 Fix tests, rename tests to end in *Test, correct timezone issue in DateTime by gwt.team.jat · 17 years ago
- 0cfb529 Removes unnecessary wrapJSO calls when the JavaScriptObject is being passed into JavaScript. by gwt.team.scottb · 17 years ago
- e6cf836 Fixes hosted mode so that JavaScriptObject types can implement native methods directly. Previously, hosted mode would fail to properly unwrap a this argument. by gwt.team.scottb · 17 years ago
- 8a74389 Some of the dev tests need access to user source for Core.gwt.xml and Emul.gwt.xml. by gwt.team.scottb · 17 years ago
- 00a2b3c - Renames the abstract JDelegatingClassTypeTest so the build system won't try to run it directly. by gwt.team.scottb · 17 years ago
- d92259c Change JsInliner to support inlining JsFunctions that consist of several hoistable expressions. by gwt.team.bobv · 17 years ago
- e375cdd This patch addresses the following problems with the TypeOracle: by gwt.team.mmendez · 17 years ago
- ccb7d40 Fixes a problem in JavaScript code generation where we were sometimes using JavaScript keywords as field names in a JSON object construction. For example: by gwt.team.scottb · 17 years ago
- 6cb7659 Allows DuplicateClinitRemover to remove clinits() that appear outside of binary comma expressions. This prepares for an improved version of InliningVisitor that inlines multi-statement functions. by gwt.team.bobv · 17 years ago
- b19bed0 Whitespace and formatting fix on JsInliner. by gwt.team.bobv · 17 years ago
- 0df7804 Reduces code size for class literal instantiations by using static factory methods. Class and package names are now separately interned again. by gwt.team.scottb · 17 years ago
- f6d864a Fixes Issue #1768. by gwt.team.knorton · 17 years ago
- 3e7f12d Tighten abstract types with only one concrete implementation. by gwt.team.bobv · 17 years ago
- 75bdb4a Fixes issue #1536: nullifies the return type of methods declared to return a type that has been determined to be globally uninstantiable. by gwt.team.scottb · 17 years ago
- 9d4a9d8 1.5 cleanup by gwt.team.scottb · 17 years ago
- 4bf1fe1 Trivial change: Removes unused import. by gwt.team.knorton · 17 years ago
- dafaaeb The attached patch finishes up the Java 1.5 support in the TypeOracle. The patch makes the following changes: by gwt.team.mmendez · 17 years ago
- f301a34 Rename JsDelegationRemover to JsInliner. by gwt.team.bobv · 17 years ago
- 0117f96 Improve the safety and correctness of inlining performed on the JavaScript AST. by gwt.team.bobv · 17 years ago
- 86df623 Compiler now performs simple control analysis to prune unreachable code at the basic-block level. Also promotes child blocks into their parents where possible. by gwt.team.scottb · 17 years ago
- 070545f Workaround for a JDK 1.6.0_02 compiler bug. by gwt.team.scottb · 17 years ago
- 2f78d10 Correctly handle JSNI references to compile-time constants. by gwt.team.scottb · 17 years ago
- e1245a3 Fixes issue #1823; adds a gwt_version global var to record the GWT version. by gwt.team.scottb · 17 years ago
- 1d65980 Fixes issue #1458; corrects some cases of bad JS output from JS code generation. Also optimizes parenthesis output where it's not really needed. by gwt.team.scottb · 17 years ago
- dec27c5 Fixed a bug resulting from the interaction between parameter pruning and devirtualization. Parameters in static impl methods may no longer be pruned until the corresponding instance method is dead. by gwt.team.scottb · 17 years ago
- 583cff1 Fix for issue #1796. I am not sure that the behavior is what we want. The original problem is that the XML parser throws a NULL pointer exception if there is a non-blank body to an XML element and there is no stack element left (we are at an inner most definition of a class.) I modified the characters() method so that a body filled with whitepace is OK, but a body with some text in it will throw a (specific) exception. by gwt.team.scottb · 17 years ago
- 9c96f2c Fixed some nondeterministic iterator; also some Java 5 updates. by gwt.team.scottb · 17 years ago
- 07c86a7 Compiler now inlines many more types of methods in the Java AST. Includes new tests to check for inlining bugs. by gwt.team.scottb · 17 years ago
- e275674 Fixed a bad assumption in Pruner that a method call to a static method won't have an instance qualifier. by gwt.team.scottb · 17 years ago
- d184483 Prior to this patch, all types which could be used over RPC needed to be accessible and instantiable from the package in which the remote service interface was declared. This patch updates the RPC type and field serializer generators to allow default access and protected classes with non-private constructors to be used. It does this by adding an instantiate method to the generated field serializer and by emitting serializers for arrays in the same package as it's corresponding leaf type. Effectively, this means that arrays are no longer dealt with via custom field serializers. by gwt.team.mmendez · 17 years ago
- fbdabb2 Fixes a problem introduced post 1.4. In order to get package level annotations to work, ICompilationUnitAdapter.getMainTypeName() needed to return the simple name of the main type in the compilation unit. The work around of parsing the string returned by CompilationUnitProvider.getLocation() would return the package name instead of the simple type name when a generated class had ".java" as part of its package name. In that scenario, JDT would report a class must be defined in its own file error for the generated type. by gwt.team.mmendez · 17 years ago
- eb91b8f Fixes issue #1824; reserves "getClass" which has a global meaning in Firefox. by gwt.team.scottb · 17 years ago
- dfd2269 Deadcode elimination on switch statements and empty cases. by gwt.team.scottb · 17 years ago
- 9742757 Compiler now prunes unused parameters! by gwt.team.scottb · 17 years ago
- f19bc08 The compiler now generates code that emulates Class objects correctly. The motivation is in anticipation of support for EnumSet/EnumMap. by gwt.team.scottb · 17 years ago
- bb22233 Basic compiler support for varargs. by gwt.team.scottb · 17 years ago
- a60c30f Miscellaneous compiler cleanup. by gwt.team.scottb · 17 years ago
- 42dc227 Fixes for broken unit tests. by gwt.team.scottb · 17 years ago
- 6fc83ea Finishes out basic enum support in the compiler. Some of the Class object based stuff needed for EnumSet/EnumMap to work correctly is not yet implemented. by gwt.team.scottb · 17 years ago
- 2a50ad0 Fix for 'operation aborted' startup error on IE in complex HTML pages. From by gwt.team.jgw · 17 years ago
- e6cf637 Add an optimization to the JavaScript AST to remove delegating/trampoline functions via code inlining. by gwt.team.bobv · 17 years ago
- 0c62258 Fixes handling of direct clinit calls; we could end up with references to empty methods before. by gwt.team.scottb · 17 years ago
- d162444 Some deadcode optimizations on JMultiExpressions to remove side-effect free expressions. Includes an optimization for field references whose only side-effect is a clinit. This is in anticipation of a change to remove unused parameters. by gwt.team.scottb · 17 years ago
- d66ed13 Java 1.5 source update / warning removal. by gwt.team.scottb · 17 years ago
- 5dffc7b The LHS of an object property initializer is not evaluated as an expression, but always treated as an object literal. by gwt.team.bobv · 17 years ago
- 4eb2799 Adds a string interning pass to the compile process. by gwt.team.bobv · 17 years ago
- 8925196 Fixes Arrays.sort (and therefore Collections.sort) to be stable as specified by gwt.team.jat · 17 years ago
- eadec09 Speed optimization for round_int; removed a duplicate method in Cast.java by gwt.team.scottb · 17 years ago
- c17771a Forgot to remove unused import. by gwt.team.scottb · 18 years ago
- d5e3542 Forgot to initialize method body for constructors. by gwt.team.scottb · 18 years ago
- e3ffdbd Fixed a problem where getMainTypeName() was not properly handling the cases where cup.getLocation() returns a URL, or "transient source for.." in the case of generated types. This was causing problems whenever running GWT applications against the GWT jars on the Windows platform. by gwt.team.rdayal · 18 years ago
- c10c143 Working on enum support. by gwt.team.scottb · 18 years ago
- eedfc88 Adds autoboxing to the compiler. Also some 1.5 cleanup. by gwt.team.scottb · 18 years ago
- 15cb402 Synthesize cast operations for type-erased generic method calls. by gwt.team.scottb · 18 years ago
- f964764 Fixes to get RPC into a workable state in hosted mode. by gwt.team.scottb · 18 years ago
- e06ef62 Forgot a few files, whoops. by gwt.team.scottb · 18 years ago
- 7455e0a Some of the TypeOracle changes to support generics. Changes to JsniInjector to support generics. Reverting custom field serializers to use raw types for now. Removing Serializable from Enums until RPC properly supports it. Other miscellaneous stuff. by gwt.team.scottb · 18 years ago
- d1366ee Some 1.5 cleanups. by gwt.team.scottb · 18 years ago
- 9c58511 Upgrade xerces to the current version. Avoids AbstractMethodError in hosted by gwt.team.jat · 18 years ago
- 720ac9b Fixed potential XSS vulnerability in the module not found error message. by gwt.team.jat · 18 years ago
- cbf2d99 Fixes issue #1659; forgot that we include finalize as an Object polymorphic. by gwt.team.scottb · 18 years ago
- cf8034a fixes some generic typing problems that hose up Sun's compiler, but not JDT by gwt.team.tobyr · 18 years ago
- c620162 This patch adds annotation support to the TypeOracle used by generators. It is a departure from what we have done previously because it models annotations as actual instances that you invoke methods on instead of metadata which is merely inspected. In this regard it is more like APT and java.lang.annotation.Annotation than our current MetaData API. Because of this, generators will now be able to use solutions of the form: by gwt.team.scottb · 18 years ago
- c8a4420 Java 1.5 changes for non-ui classes in gwt-user module: by gwt.team.rdayal · 18 years ago