Changeset: 960a6311b8b7 Author: emc Date: 2014-11-06 17:39 -0500 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/960a6311b8b7
8062245: Test executes incorrect class Summary: Fix issue with test executing incorrect class, and trivial test failure linked to different subclasses of CharSequance. Reviewed-by: jjg ! test/tools/javac/processing/model/type/BoundsTest.java Changeset: aa9b6165ab12 Author: emc Date: 2014-11-07 07:54 -0500 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/aa9b6165ab12 8029012: parameter_index for type annotation not updated after outer.this added Summary: Fix javac's handling of type annotations when synthetic parameters are added Reviewed-by: jjg, mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotationPosition.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java + test/tools/javac/annotations/typeAnnotations/classfile/ClassfileInspector.java + test/tools/javac/annotations/typeAnnotations/classfile/SyntheticParameters.java ! test/tools/javac/annotations/typeAnnotations/referenceinfos/Constructors.java Changeset: 9144dcb5bd6a Author: jlahoda Date: 2014-11-07 18:22 +0100 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/9144dcb5bd6a 8058489: More adjustments of langtools/make/build.xml to modularized layout Summary: Re-structuring the langtools/make/build.xml to reflect the modular layout, cleanup of the build script Reviewed-by: jjg, mcimadamore, ksrini ! make/build.properties ! make/build.xml ! make/launcher.sh-template ! make/netbeans/langtools/build.xml ! make/netbeans/langtools/nbproject/project.xml ! make/tools/anttasks/SelectToolTask.java Changeset: 7879a4144d20 Author: jjg Date: 2014-11-07 14:51 -0800 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/7879a4144d20 8063145: ToolBox should support extracting classes from a JavaFileManager/Location Reviewed-by: ksrini ! test/tools/javac/6508981/TestInferBinaryName.java ! test/tools/lib/ToolBox.java Changeset: 1f593bc97283 Author: mcimadamore Date: 2014-11-08 22:00 +0000 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/1f593bc97283 8064367: Fix IntelliJ langtools support to use new dev build Summary: Update ant hooks in langtools IntelliJ project Reviewed-by: jlahoda ! make/intellij/build.xml ! make/intellij/src/idea/LangtoolsIdeaAntLogger.java ! make/intellij/workspace.xml Changeset: c3cb06860511 Author: jfranck Date: 2014-10-24 10:08 +0200 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/c3cb06860511 8060448: ArrayIndexOutOfBoundsException with annotation processing printout of empty line Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/BasicDiagnosticFormatter.java + test/tools/javac/util/NewlineOnlyDiagnostic.java Changeset: b5eeeb11b9d4 Author: alundblad Date: 2014-11-10 20:29 +0100 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/b5eeeb11b9d4 8062737: Sjavac creates unnecessarily many SjavacClient/PooledSjavac/SjavacImpl instances Summary: Moved sjavac initialization out of loop body. Reviewed-by: jfranck, ohrstrom ! src/jdk.compiler/share/classes/com/sun/tools/sjavac/client/ClientMain.java Changeset: 601e08b62ba8 Author: mcimadamore Date: 2014-11-12 12:41 +0000 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/601e08b62ba8 8064464: regression with type inference of conditional expression Summary: Bad classification of conditional leads to spurious error Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/DeferredAttr.java ! test/tools/javac/ConditionalWithVoid.java ! test/tools/javac/ConditionalWithVoid.out + test/tools/javac/conditional/8064464/T8064464.java + test/tools/javac/conditional/8064464/T8064464.out ! test/tools/javac/diags/examples/NeitherConditionalSubtype.java Changeset: 8a4c8be21774 Author: aeremeev Date: 2014-11-12 15:16 +0200 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/8a4c8be21774 8042931: Implement classfile tests for EnclosingMethod attribute. Reviewed-by: jjg, shurailine, anazarov + test/tools/javac/classfiles/attributes/EnclosingMethod/EnclosingMethodTest.java ! test/tools/javac/classfiles/attributes/deprecated/DeprecatedPackageTest.java ! test/tools/javac/classfiles/attributes/deprecated/DeprecatedTest.java ! test/tools/javac/classfiles/attributes/innerclasses/InnerClassesHierarchyTest.java ! test/tools/javac/classfiles/attributes/innerclasses/InnerClassesIndexTest.java ! test/tools/javac/classfiles/attributes/innerclasses/InnerClassesTestBase.java ! test/tools/javac/classfiles/attributes/lib/TestBase.java ! test/tools/javac/classfiles/attributes/lib/TestResult.java Changeset: 532a67fe69ec Author: jlahoda Date: 2014-11-12 19:05 +0100 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/532a67fe69ec 8064362: WriteableScope.dupUnshared misbehaves on shared Scopes Summary: When calling dupUnshared on a shared scope, make sure the result does not contain Symbols that don't belong to the scope that is being dupUnshared. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Scope.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java + test/tools/javac/scope/DupUnsharedTest.java Changeset: ce519d6f344b Author: alundblad Date: 2014-11-13 14:49 +0100 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/ce519d6f344b 8059591: Give TaskListener methods empty default implementations Summary: Added empty default implementations for TaskListener methods. Reviewed-by: jfranck, ohrstrom ! src/jdk.compiler/share/classes/com/sun/source/util/TaskListener.java Changeset: c286272a81dd Author: lana Date: 2014-11-13 09:39 -0800 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/c286272a81dd Merge Changeset: b52a35aa408c Author: chegar Date: 2014-11-17 21:00 +0000 URL: http://hg.openjdk.java.net/jigsaw/m2/langtools/rev/b52a35aa408c Merge ! make/build.properties ! test/tools/javac/6508981/TestInferBinaryName.java ! test/tools/lib/ToolBox.java
