vromero [Wed, 18 Dec 2013 19:22:58 +0000] rev 22162
8029721: javac crash for annotated parameter type of lambda in a field
Reviewed-by: rfield, jfranck
vromero [Wed, 18 Dec 2013 19:15:58 +0000] rev 22161
8029569: internal javac cast exception when resolving varargs ambiguity
Reviewed-by: jjg
ksrini [Fri, 06 Dec 2013 09:07:47 -0800] rev 22160
8029504: Regression: TestDocRootLink test fails on Windows
Reviewed-by: bpatel, jjg
briangoetz [Wed, 18 Dec 2013 10:29:25 -0500] rev 22159
8030253: Update langtools to use strings-in-switch
8030262: Update langtools to use foreach loops
8030245: Update langtools to use try-with-resources and multi-catch
Reviewed-by: darcy
emc [Tue, 17 Dec 2013 19:27:49 -0500] rev 22158
8030687: Add .out files to fix failing tests
Summary: Forgot to hg add golden files in a previous fix
Reviewed-by: jjg
emc [Tue, 17 Dec 2013 18:15:48 -0500] rev 22157
8030642: Add golden files to javac/limits
Summary: Add golden files to check output of negative compilation tests in javac/limits
Reviewed-by: jjg, emc
Contributed-by: paul.govereau@oracle.com
darcy [Tue, 17 Dec 2013 10:28:36 -0800] rev 22156
8030080: Correct misstatement in JSR 269 MR (in javax.lang.model)
Reviewed-by: jfranck
jlahoda [Tue, 17 Dec 2013 10:58:26 +0100] rev 22155
8028235: Better error recovery for parsing 'void' as a type of the lambda parameter
Summary: Handle "void" as a primitive type in JavacParser.analyzeParens.
Reviewed-by: vromero
jlahoda [Tue, 17 Dec 2013 10:58:21 +0100] rev 22154
8028415: TreeMaker.Literal(Object) creates invalid JCLiterals when passed a Character.
Summary: JCLiteral for char must contain an Integer, not the provided Character.
Reviewed-by: jjg
jlahoda [Tue, 17 Dec 2013 10:55:59 +0100] rev 22153
8029800: Flags.java uses String.toLowerCase without specifying Locale
Summary: Introducing StringUtils.toLowerCase/toUpperCase independent on the default locale, converting almost all usages of String.toLowerCase/toUpperCase to use the new methods.
Reviewed-by: jjg, bpatel