Changeset: 6fdfa77ddeed Author: aeremeev Date: 2015-09-28 13:23 +0300 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/6fdfa77ddeed
8081472: Add a mode to the tests for class-file attributes which dumps in-memory sources to disk Reviewed-by: ksrini ! test/tools/javac/classfiles/attributes/LineNumberTable/LineNumberTestBase.java ! test/tools/javac/classfiles/attributes/annotations/AnnotationsTestBase.java ! test/tools/javac/classfiles/attributes/innerclasses/InnerClassesTestBase.java ! test/tools/javac/classfiles/attributes/lib/TestBase.java Changeset: 2fd864f1ff3a Author: jlahoda Date: 2015-09-29 21:22 +0200 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/2fd864f1ff3a 8133454: Update Java Compiler Error Message Summary: Updating the error message that is used when javac crashes. Reviewed-by: jjg Contributed-by: [email protected] ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties Changeset: e6fcc24b6d14 Author: sadayapalam Date: 2015-10-01 19:47 +0530 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/e6fcc24b6d14 8132535: Compiler fails with diamond anonymous class creation with intersection bound of enclosing class Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java + test/tools/javac/generics/diamond/neg/Neg21.java + test/tools/javac/generics/diamond/neg/Neg21.out + test/tools/javac/generics/diamond/neg/Neg22.java + test/tools/javac/generics/diamond/neg/Neg22.out + test/tools/javac/generics/diamond/neg/Neg23.java + test/tools/javac/generics/diamond/neg/Neg23.out + test/tools/javac/generics/diamond/neg/pkg/Neg23_01.java Changeset: 37b60162a2db Author: mcimadamore Date: 2015-10-02 13:27 +0100 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/37b60162a2db 8137269: Add better support for local caching in ArgumentAttr Summary: ArgumentAttr should support local caches when results of speculative attribution might be thrown away Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Analyzer.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ArgumentAttr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/DeferredAttr.java Changeset: d034f4347b09 Author: sadayapalam Date: 2015-10-05 15:41 +0530 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/d034f4347b09 8133135: Compiler internall error (NPE) on anonymous class defined by qualified instance creation expression with diamond Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java + test/tools/javac/generics/diamond/pos/Pos08.java Changeset: 4914b013c305 Author: jlahoda Date: 2015-10-05 18:31 +0200 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/4914b013c305 8075274: Compilation still depends on the order of imports 8133235: Compilation depends on order of source files Summary: When analyzing type hierarchy, HierarchyPhase should process supertypes before subtypes. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java + test/tools/javac/importscope/T8075274/C.java + test/tools/javac/importscope/T8075274/D.java + test/tools/javac/importscope/T8075274/Outer.java + test/tools/javac/importscope/T8133235/A.java + test/tools/javac/importscope/T8133235/B.java + test/tools/javac/importscope/T8133235/C.java + test/tools/javac/importscope/T8133235/D.java Changeset: 6d1efeaa04f2 Author: lana Date: 2015-10-06 08:43 -0700 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/6d1efeaa04f2 Merge Changeset: 7ef2c66892a3 Author: vromero Date: 2015-10-06 13:59 -0700 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/7ef2c66892a3 8138914: javac, method visitTypeVar() at visitor Types.hashCode generates the same hash code for different type variables Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Infer.java Changeset: e481951ea027 Author: lana Date: 2015-10-08 22:30 -0700 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/e481951ea027 Added tag jdk9-b85 for changeset 7ef2c66892a3 ! .hgtags Changeset: 21b0862fdd32 Author: sadayapalam Date: 2015-10-07 15:53 +0530 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/21b0862fdd32 8130506: javac AssertionError when invoking MethodHandle.invoke with lambda paramter Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java + test/tools/javac/lambda/MethodHandleInvokeTest.java Changeset: eb3d4a11eea6 Author: sadayapalam Date: 2015-10-07 16:02 +0530 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/eb3d4a11eea6 8065219: Deprecated warning in method reference are missing in some cases. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java + test/tools/javac/warnings/DeprecationSE8Test.java + test/tools/javac/warnings/DeprecationSE8Test.noLint.out + test/tools/javac/warnings/DeprecationSE8Test.out Changeset: 9e37996eb1b3 Author: sadayapalam Date: 2015-10-07 19:35 +0530 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/9e37996eb1b3 8075799: Extraneous access checks implemented by javac Summary: Allow anonymous class constructors to refer to inaccessible types. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java + test/tools/javac/AnonymousClass/CtorAccessBypassTest.java ! test/tools/javac/generics/diamond/neg/Neg18.out Changeset: 130a7c2a8590 Author: lana Date: 2015-10-09 10:23 -0700 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/130a7c2a8590 Merge Changeset: 45f796d8cdcd Author: lana Date: 2015-10-15 15:15 -0700 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/45f796d8cdcd Added tag jdk9-b86 for changeset 130a7c2a8590 ! .hgtags Changeset: 0f1870480d71 Author: chegar Date: 2015-10-16 13:41 +0100 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/0f1870480d71 Merge ! .hgtags ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/DeferredAttr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties
