aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny van Bruggen <hexagonaal@gmail.com>2018-02-21 21:55:40 +0100
committerDanny van Bruggen <hexagonaal@gmail.com>2018-02-21 21:55:40 +0100
commit537828d8909778f063972567196bbb7771b8b662 (patch)
tree4aab82d6eb165fdb28a437ab28c7874b092e9d8b
parent2a8568ea77d173e6030c78246325b4da3ced62f2 (diff)
downloadjavaparser-537828d8909778f063972567196bbb7771b8b662.tar.gz
Move bulk test to Java 10
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ParserConfiguration.java4
-rw-r--r--javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/VarTypeTest.java4
-rw-r--r--javaparser-testing/src/test/java/com/github/javaparser/ast/validator/Java10ValidatorTest.java4
-rw-r--r--javaparser-testing/src/test/java/com/github/javaparser/manual/BulkParseTest.java6
-rw-r--r--javaparser-testing/src/test/java/com/github/javaparser/version/Java10PostProcessorTest.java5
-rw-r--r--javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/openjdk_src_repo_test_results.txt371
6 files changed, 194 insertions, 200 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ParserConfiguration.java b/javaparser-core/src/main/java/com/github/javaparser/ParserConfiguration.java
index deb8d4cdc..7c4a0e8da 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ParserConfiguration.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ParserConfiguration.java
@@ -53,7 +53,7 @@ public class ParserConfiguration {
JAVA_7(new Java7Validator(), null),
JAVA_8(new Java8Validator(), null),
JAVA_9(new Java9Validator(), null),
- JAVA_10_PREVIEW(null, new Java10PostProcessor()),
+ JAVA_10(null, new Java10PostProcessor()),
JAVA_11_PREVIEW(null, new Java11PostProcessor());
final Validator validator;
@@ -181,7 +181,7 @@ public class ParserConfiguration {
public ParserConfiguration setValidator(Validator validator) {
// This whole method is a backwards compatability hack.
if (validator instanceof Java10Validator) {
- setLanguageLevel(LanguageLevel.JAVA_10_PREVIEW);
+ setLanguageLevel(LanguageLevel.JAVA_10);
} else if (validator instanceof Java9Validator) {
setLanguageLevel(LanguageLevel.JAVA_9);
} else if (validator instanceof Java8Validator) {
diff --git a/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/VarTypeTest.java b/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/VarTypeTest.java
index 6f2f72057..d8d0eafe0 100644
--- a/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/VarTypeTest.java
+++ b/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/VarTypeTest.java
@@ -14,14 +14,14 @@ import com.github.javaparser.symbolsolver.reflectionmodel.ReflectionClassDeclara
import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
import org.junit.Test;
-import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10_PREVIEW;
+import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10;
import static com.github.javaparser.Providers.provider;
import static org.junit.Assert.assertEquals;
public class VarTypeTest {
private final TypeSolver typeSolver = new ReflectionTypeSolver();
private final JavaParser javaParser = new JavaParser(new ParserConfiguration()
- .setLanguageLevel(JAVA_10_PREVIEW)
+ .setLanguageLevel(JAVA_10)
.setSymbolResolver(new JavaSymbolSolver(typeSolver)));
@Test
diff --git a/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/Java10ValidatorTest.java b/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/Java10ValidatorTest.java
index afd65aaa5..8c2b93568 100644
--- a/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/Java10ValidatorTest.java
+++ b/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/Java10ValidatorTest.java
@@ -10,13 +10,13 @@ import org.junit.Test;
import static com.github.javaparser.ParseStart.CLASS_BODY;
import static com.github.javaparser.ParseStart.STATEMENT;
-import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10_PREVIEW;
+import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10;
import static com.github.javaparser.Providers.provider;
import static com.github.javaparser.utils.TestUtils.assertNoProblems;
import static com.github.javaparser.utils.TestUtils.assertProblems;
public class Java10ValidatorTest {
- public static final JavaParser javaParser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_10_PREVIEW));
+ public static final JavaParser javaParser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_10));
@Test
public void varAllowedInLocalVariableDeclaration() {
diff --git a/javaparser-testing/src/test/java/com/github/javaparser/manual/BulkParseTest.java b/javaparser-testing/src/test/java/com/github/javaparser/manual/BulkParseTest.java
index 8932bd9b4..b09651f7d 100644
--- a/javaparser-testing/src/test/java/com/github/javaparser/manual/BulkParseTest.java
+++ b/javaparser-testing/src/test/java/com/github/javaparser/manual/BulkParseTest.java
@@ -2,7 +2,6 @@ package com.github.javaparser.manual;
import com.github.javaparser.ParserConfiguration;
import com.github.javaparser.Problem;
-import com.github.javaparser.ast.validator.Java9Validator;
import com.github.javaparser.utils.CodeGenerationUtils;
import com.github.javaparser.utils.Log;
import com.github.javaparser.utils.SourceRoot;
@@ -19,6 +18,7 @@ import java.util.List;
import java.util.Map;
import java.util.TreeMap;
+import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10;
import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_9;
import static com.github.javaparser.utils.CodeGenerationUtils.f;
import static com.github.javaparser.utils.SourceRoot.Callback.Result.DONT_SAVE;
@@ -47,9 +47,9 @@ public class BulkParseTest {
Log.info("Downloading JDK langtools");
/* Found by choosing a tag here: http://hg.openjdk.java.net/jdk9/jdk9/langtools/tags
then copying the "zip" link to the line below: */
- download(new URL("http://hg.openjdk.java.net/jdk9/jdk9/langtools/archive/5ecbed313125.zip"), openJdkZipPath);
+ download(new URL("http://hg.openjdk.java.net/jdk10/jdk10/langtools/archive/19293ea3999f.zip"), openJdkZipPath);
}
- bulkTest(new SourceZip(openJdkZipPath), "openjdk_src_repo_test_results.txt", new ParserConfiguration().setLanguageLevel(JAVA_9));
+ bulkTest(new SourceZip(openJdkZipPath), "openjdk_src_repo_test_results.txt", new ParserConfiguration().setLanguageLevel(JAVA_10));
}
private void parseJdkSrcZip() throws IOException {
diff --git a/javaparser-testing/src/test/java/com/github/javaparser/version/Java10PostProcessorTest.java b/javaparser-testing/src/test/java/com/github/javaparser/version/Java10PostProcessorTest.java
index 8747543bc..4f9af2748 100644
--- a/javaparser-testing/src/test/java/com/github/javaparser/version/Java10PostProcessorTest.java
+++ b/javaparser-testing/src/test/java/com/github/javaparser/version/Java10PostProcessorTest.java
@@ -10,13 +10,12 @@ import org.junit.Test;
import java.util.List;
import static com.github.javaparser.ParseStart.STATEMENT;
-import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10_PREVIEW;
+import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10;
import static com.github.javaparser.Providers.provider;
-import static com.github.javaparser.utils.TestUtils.assertNoProblems;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class Java10PostProcessorTest {
- public static final JavaParser javaParser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_10_PREVIEW));
+ public static final JavaParser javaParser = new JavaParser(new ParserConfiguration().setLanguageLevel(JAVA_10));
@Test
public void varIsAType() {
diff --git a/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/openjdk_src_repo_test_results.txt b/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/openjdk_src_repo_test_results.txt
index 0a8df7aa6..b3d4e574e 100644
--- a/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/openjdk_src_repo_test_results.txt
+++ b/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/openjdk_src_repo_test_results.txt
@@ -1,49 +1,34 @@
-langtools-5ecbed313125/test/com/sun/javadoc/testAnchorNames/pkg1/RegClass.java
+langtools-19293ea3999f/test/jdk/javadoc/doclet/testAnchorNames/pkg1/RegClass.java
(line 68,col 16) '_' is a reserved keyword.
-langtools-5ecbed313125/test/com/sun/javadoc/testSourceTab/DoubleTab/C.java
+langtools-19293ea3999f/test/jdk/javadoc/doclet/testSourceTab/DoubleTab/C.java
Lexical error at line 33, column 2. Encountered: "t" (116), after : "\\"
-langtools-5ecbed313125/test/com/sun/javadoc/testSourceTab/SingleTab/C.java
+langtools-19293ea3999f/test/jdk/javadoc/doclet/testSourceTab/SingleTab/C.java
Lexical error at line 33, column 2. Encountered: "t" (116), after : "\\"
-langtools-5ecbed313125/test/com/sun/javadoc/testTypeAnnotations/typeannos/Receivers.java
-(line 56,col 34) Parse error. Found "this", expected one of "..." "@" "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-
-langtools-5ecbed313125/test/com/sun/javadoc/testUnnamedPackage/BadSource.java
-Parse error. Found "Just" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-
-langtools-5ecbed313125/test/jdk/javadoc/doclet/testAnchorNames/pkg1/RegClass.java
-(line 68,col 16) '_' is a reserved keyword.
-
-langtools-5ecbed313125/test/jdk/javadoc/doclet/testSourceTab/DoubleTab/C.java
-Lexical error at line 33, column 2. Encountered: "t" (116), after : "\\"
-
-langtools-5ecbed313125/test/jdk/javadoc/doclet/testSourceTab/SingleTab/C.java
-Lexical error at line 33, column 2. Encountered: "t" (116), after : "\\"
-
-langtools-5ecbed313125/test/jdk/javadoc/doclet/testUnnamedPackage/BadSource.java
+langtools-19293ea3999f/test/jdk/javadoc/doclet/testUnnamedPackage/BadSource.java
Parse error. Found "Just" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/jdk/javadoc/tool/6964914/Error.java
+langtools-19293ea3999f/test/jdk/javadoc/tool/6964914/Error.java
(line 25,col 12) Parse error. Found "}", expected "("
-langtools-5ecbed313125/test/jdk/javadoc/tool/6964914/JavacWarning.java
+langtools-19293ea3999f/test/jdk/javadoc/tool/6964914/JavacWarning.java
(line 25,col 12) '_' is a reserved keyword.
-langtools-5ecbed313125/test/jdk/javadoc/tool/enum/docComments/pkg1/Operation.java
+langtools-19293ea3999f/test/jdk/javadoc/tool/enum/docComments/pkg1/Operation.java
(line 33,col 1) 'abstract' is not allowed here.
-langtools-5ecbed313125/test/jdk/javadoc/tool/T4994049/FileWithTabs.java
+langtools-19293ea3999f/test/jdk/javadoc/tool/T4994049/FileWithTabs.java
Lexical error at line 25, column 2. Encountered: "t" (116), after : "\\"
-langtools-5ecbed313125/test/tools/javac/6302184/T6302184.java
+langtools-19293ea3999f/test/tools/javac/6302184/T6302184.java
Lexical error at line 28, column 9. Encountered: "\ufffd" (65533), after : ""
-langtools-5ecbed313125/test/tools/javac/6440583/A.java
+langtools-19293ea3999f/test/tools/javac/6440583/A.java
(line 25,col 28) Parse error. Found "1" <INTEGER_LITERAL>, expected "}"
-langtools-5ecbed313125/test/tools/javac/annotations/AnnotationTypeElementModifiers.java
+langtools-19293ea3999f/test/tools/javac/annotations/AnnotationTypeElementModifiers.java
(line 17,col 5) 'private' is not allowed here.
(line 18,col 5) 'private' is not allowed here.
(line 20,col 5) 'protected' is not allowed here.
@@ -65,388 +50,392 @@ langtools-5ecbed313125/test/tools/javac/annotations/AnnotationTypeElementModifie
(line 44,col 5) 'default' is not allowed here.
(line 45,col 5) 'default' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/annotations/FinalReceiverTest.java
+langtools-19293ea3999f/test/tools/javac/annotations/FinalReceiverTest.java
(line 11,col 43) Parse error. Found ".", expected one of ")" "," "@" "["
(line 14,col 2) Parse error. Found <EOF>, expected "}"
(line 14,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/annotations/neg/AnnComma.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/AnnComma.java
(line 12,col 35) Parse error. Found ")", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/annotations/neg/NoDefault.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/NoDefault.java
(line 8,col 19) Parse error. Found "{", expected one of ";" "default"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/NoDefaultAbstract.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/NoDefaultAbstract.java
(line 8,col 5) 'default' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/annotations/neg/NoStatic.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/NoStatic.java
(line 9,col 18) Parse error. Found "{", expected one of ";" "default"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/NoStaticAbstract.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/NoStaticAbstract.java
(line 9,col 5) 'static' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Syntax1.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Syntax1.java
(line 17,col 21) Parse error. Found ",", expected one of "!=" "%" "&" "&&" "(" ")" "*" "+" "-" "/" "<" "<=" "==" ">" ">=" "?" "^" "instanceof" "|" "||"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z12.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z12.java
(line 10,col 15) Parse error. Found "void", expected one of ";" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "volatile" "with" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z13.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z13.java
(line 11,col 11) Parse error. Found "throws", expected one of ";" "default"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z14.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z14.java
(line 10,col 12) Parse error. Found "<", expected "{"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z2.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z2.java
(line 13,col 17) Parse error. Found "default", expected one of ";" "@" "[" "throws" "{"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z3.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z3.java
(line 13,col 17) Parse error. Found "default", expected one of ";" "@" "[" "throws" "{"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z5.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z5.java
(line 12,col 12) Parse error. Found "extends", expected "{"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z8.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z8.java
(line 11,col 10) Parse error. Found "int", expected ")"
-langtools-5ecbed313125/test/tools/javac/annotations/neg/Z9.java
+langtools-19293ea3999f/test/tools/javac/annotations/neg/Z9.java
(line 10,col 15) Parse error. Found "<", expected one of ";" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "volatile" "with" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/6967002/T6967002.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/6967002/T6967002.java
(line 33,col 16) Parse error. Found "...", expected one of "!=" "%" "%=" "&" "&&" "&=" "(" ")" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/AnnotatedClassExpr.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/AnnotatedClassExpr.java
(line 12,col 15) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 13,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 17,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 18,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/AnnotatedMethodSelectorTest.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/AnnotatedMethodSelectorTest.java
(line 12,col 14) Parse error. Found ".", expected one of "%=" "&=" "(" "*=" "++" "+=" "--" "-=" "/=" ";" "<<=" "=" ">>=" ">>>=" "^=" "|="
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/BadCast.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/BadCast.java
(line 12,col 16) Parse error. Found "@", expected one of "!" "(" ")" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/IncompleteArray.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/IncompleteArray.java
(line 11,col 11) Parse error. Found "@", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/IndexArray.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/IndexArray.java
(line 12,col 11) Parse error. Found "@", expected one of "!=" "%" "%=" "&" "&&" "&=" "(" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/OldArray.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/OldArray.java
(line 12,col 10) Parse error. Found "@", expected one of "]"
-langtools-5ecbed313125/test/tools/javac/annotations/typeAnnotations/failures/StaticFields.java
+langtools-19293ea3999f/test/tools/javac/annotations/typeAnnotations/failures/StaticFields.java
(line 13,col 10) Parse error. Found "@", expected one of "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 17,col 9) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/api/T6265137a.java
+langtools-19293ea3999f/test/tools/javac/api/T6265137a.java
(line 24,col 1) Parse error. Found <EOF>, expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/BadAnnotation.java
+langtools-19293ea3999f/test/tools/javac/BadAnnotation.java
(line 11,col 21) Parse error. Found "int", expected ")"
-langtools-5ecbed313125/test/tools/javac/BadHexConstant.java
+langtools-19293ea3999f/test/tools/javac/BadHexConstant.java
(line 12,col 14) Parse error. Found "xL" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/declaration/method/MethodVoidParameter.java
+langtools-19293ea3999f/test/tools/javac/declaration/method/MethodVoidParameter.java
(line 7,col 16) Parse error. Found "void", expected one of ")" "@" "abstract" "boolean" "byte" "char" "default" "double" "enum" "exports" "final" "float" "int" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "volatile" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/defaultMethods/private/Private02.java
+langtools-19293ea3999f/test/tools/javac/defaultMethods/private/Private02.java
(line 13,col 9) Cannot be 'abstract' and also 'private'.
-langtools-5ecbed313125/test/tools/javac/defaultMethods/private/Private07.java
+langtools-19293ea3999f/test/tools/javac/defaultMethods/private/Private07.java
(line 9,col 5) 'private' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/defaultMethods/private/Private08.java
+langtools-19293ea3999f/test/tools/javac/defaultMethods/private/Private08.java
(line 13,col 9) Can have only one of 'public', 'private'.
(line 14,col 9) Cannot be 'abstract' and also 'private'.
-langtools-5ecbed313125/test/tools/javac/defaultMethods/private/Private09.java
+langtools-19293ea3999f/test/tools/javac/defaultMethods/private/Private09.java
(line 9,col 17) Duplicated modifier
-langtools-5ecbed313125/test/tools/javac/defaultMethods/private/Private10.java
+langtools-19293ea3999f/test/tools/javac/defaultMethods/private/Private10.java
(line 11,col 9) Cannot be 'abstract' and also 'private'.
(line 14,col 9) Cannot be 'abstract' and also 'private'.
-langtools-5ecbed313125/test/tools/javac/DefiniteAssignment/ConstantInfiniteWhile.java
+langtools-19293ea3999f/test/tools/javac/DefiniteAssignment/ConstantInfiniteWhile.java
Lexical error at line 68, column 0. Encountered: <EOF> after : ""
-langtools-5ecbed313125/test/tools/javac/diags/examples/AnnotationMustBeNameValue.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/AnnotationMustBeNameValue.java
(line 32,col 15) Parse error. Found ",", expected one of "!=" "%" "&" "&&" ")" "*" "+" "-" "/" "<" "<=" "==" ">" ">=" "?" "^" "instanceof" "|" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/ArrayAndReceiver.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ArrayAndReceiver.java
(line 27,col 29) Parse error. Found "[", expected one of ")" ","
-langtools-5ecbed313125/test/tools/javac/diags/examples/AssertAsIdentifier2.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/AssertAsIdentifier2.java
(line 27,col 5) Parse error. Found "assert", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/CallMustBeFirst.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/CallMustBeFirst.java
(line 28,col 18) Parse error. Found "super", expected "}"
-langtools-5ecbed313125/test/tools/javac/diags/examples/CantAssignToThis.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/CantAssignToThis.java
(line 28,col 9) Illegal left hand side of an assignment.
-langtools-5ecbed313125/test/tools/javac/diags/examples/CantExtendIntfAnno.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/CantExtendIntfAnno.java
(line 28,col 12) Parse error. Found "extends", expected "{"
-langtools-5ecbed313125/test/tools/javac/diags/examples/CatchWithoutTry.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/CatchWithoutTry.java
(line 27,col 14) Parse error. Found "catch", expected "}"
(line 30,col 5) Parse error. Found "}", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/DefaultAllowedInIntfAnnotationMember.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/DefaultAllowedInIntfAnnotationMember.java
(line 27,col 18) Parse error. Found "default", expected one of ";" "@" "[" "throws" "{"
-langtools-5ecbed313125/test/tools/javac/diags/examples/DotClassExpected.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/DotClassExpected.java
(line 27,col 11) Parse error. Found "int", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/diags/examples/ElseWithoutIf.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ElseWithoutIf.java
(line 27,col 14) Parse error. Found "else", expected "}"
(line 30,col 5) Parse error. Found "}", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/EmptyCharLiteral.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/EmptyCharLiteral.java
Lexical error at line 27, column 15. Encountered: "\'" (39), after : "\'"
-langtools-5ecbed313125/test/tools/javac/diags/examples/EnumAsIdentifier2.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/EnumAsIdentifier2.java
(line 27,col 9) 'enum' cannot be used as an identifier as it is a keyword.
-langtools-5ecbed313125/test/tools/javac/diags/examples/Expected2.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/Expected2.java
(line 30,col 13) Parse error. Found ";", expected one of "(" "@" "["
-langtools-5ecbed313125/test/tools/javac/diags/examples/Expected3.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/Expected3.java
Parse error. Found "int", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/ExpectedModule.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ExpectedModule.java
(line 26,col 1) Parse error. Found "class", expected "module"
-langtools-5ecbed313125/test/tools/javac/diags/examples/FinallyWithoutTry.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/FinallyWithoutTry.java
(line 27,col 14) Parse error. Found "finally", expected "}"
(line 30,col 5) Parse error. Found "}", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/ForeachBadInitialization.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ForeachBadInitialization.java
(line 29,col 14) Parse error. Found ":", expected one of "!=" "%" "%=" "&" "&&" "&=" "(" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 31,col 2) Parse error. Found <EOF>, expected "}"
(line 31,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/IdentifierExpected.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IdentifierExpected.java
(line 30,col 1) Parse error. Found "{", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalChar.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalAnnotationDeclaration.java
+(line 27,col 5) Parse error. Found "@", expected "}"
+(line 29,col 5) Parse error. Found "}", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
+
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalChar.java
Lexical error at line 27, column 13. Encountered: "`" (96), after : ""
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalComboModifiers.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalComboModifiers.java
(line 27,col 5) Can have only one of 'public', 'private'.
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalDot.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalDot.java
(line 27,col 12) Parse error. Found ".", expected one of "..." "@" "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalEscapeChar.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalEscapeChar.java
Lexical error at line 27, column 18. Encountered: "!" (33), after : "\"\\"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalLineEndInCharLit.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalLineEndInCharLit.java
Lexical error at line 27, column 15. Encountered: "\n" (10), after : "\'"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalNonAsciiDigit.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalNonAsciiDigit.java
(line 27,col 13) Parse error. Found "\\u0660" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalStartOfExpr.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalStartOfExpr.java
(line 27,col 11) Parse error. Found "=", expected one of "!" "(" "+" "++" "-" "--" "@" "boolean" "byte" "char" "double" "enum" "exports" "false" "float" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "short" "strictfp" "super" "this" "to" "transitive" "true" "uses" "void" "with" "{" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalStartOfStmt.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalStartOfStmt.java
(line 29,col 17) Parse error. Found "}", expected one of "(" "++" "--" ";" "@" "assert" "boolean" "break" "byte" "char" "continue" "do" "double" "enum" "exports" "false" "float" "for" "if" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "return" "short" "strictfp" "super" "switch" "synchronized" "this" "throw" "to" "transitive" "true" "try" "uses" "void" "while" "with" "{" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 31,col 2) Parse error. Found <EOF>, expected one of "else" "}"
(line 31,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalStartOfType.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalStartOfType.java
(line 27,col 27) Parse error. Found ")", expected one of "boolean" "byte" "char" "double" "float" "int" "long" "short"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalUnderscore.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalUnderscore.java
(line 27,col 13) Parse error. Found "_" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IllegalUnicodeEscape.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IllegalUnicodeEscape.java
Lexical error at line 27, column 15. Encountered: ";" (59), after : "\\u"
-langtools-5ecbed313125/test/tools/javac/diags/examples/InitializerNotAllowed.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/InitializerNotAllowed.java
(line 27,col 5) An interface cannot have initializers.
-langtools-5ecbed313125/test/tools/javac/diags/examples/InterfaceNotAllowed.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/InterfaceNotAllowed.java
(line 28,col 9) There is no such thing as a local interface.
-langtools-5ecbed313125/test/tools/javac/diags/examples/IntfAnnotationCantHaveTypeParams.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IntfAnnotationCantHaveTypeParams.java
(line 26,col 12) Parse error. Found "<", expected "{"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IntfAnnotationsCantHaveParams.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IntfAnnotationsCantHaveParams.java
(line 27,col 17) Parse error. Found "int", expected ")"
-langtools-5ecbed313125/test/tools/javac/diags/examples/IntfAnnotationsCantHaveTypeParams.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/IntfAnnotationsCantHaveTypeParams.java
(line 26,col 14) Parse error. Found "<", expected one of ";" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "volatile" "with" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/InvalidBinaryNumber.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/InvalidBinaryNumber.java
(line 27,col 13) Parse error. Found "b201000010" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/InvalidHexNumber.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/InvalidHexNumber.java
(line 28,col 13) Parse error. Found "xz1357abc" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/InvalidModuleDirective/module-info.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/InvalidModuleDirective/module-info.java
(line 27,col 21) Parse error. Found "resuires" <IDENTIFIER>, expected one of "exports" "opens" "provides" "requires" "uses" "}"
-langtools-5ecbed313125/test/tools/javac/diags/examples/LocalEnum.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/LocalEnum.java
(line 28,col 14) Parse error. Found "{", expected one of "," ";" "=" "@" "["
-langtools-5ecbed313125/test/tools/javac/diags/examples/MalformedFpLit.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/MalformedFpLit.java
(line 28,col 15) Parse error. Found "e" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/diags/examples/ModifierNotAllowed.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ModifierNotAllowed.java
(line 26,col 1) 'synchronized' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/diags/examples/NoAnnotationsOnDotClass.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/NoAnnotationsOnDotClass.java
(line 30,col 14) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/diags/examples/NotAllowedClass.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/NotAllowedClass.java
(line 28,col 17) Parse error. Found "class", expected one of "(" "++" "--" ";" "@" "assert" "boolean" "break" "byte" "char" "continue" "do" "double" "enum" "exports" "false" "float" "for" "if" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "return" "short" "strictfp" "super" "switch" "synchronized" "this" "throw" "to" "transitive" "true" "try" "uses" "void" "while" "with" "{" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 31,col 2) Parse error. Found <EOF>, expected one of "else" "}"
(line 31,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/NotAllowedVariable.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/NotAllowedVariable.java
(line 28,col 17) Parse error. Found "int", expected one of "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/diags/examples/NotAStatement.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/NotAStatement.java
(line 27,col 14) Parse error. Found "x" <IDENTIFIER>, expected "}"
-langtools-5ecbed313125/test/tools/javac/diags/examples/Orphaned.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/Orphaned.java
(line 27,col 14) Parse error. Found "case", expected "}"
-langtools-5ecbed313125/test/tools/javac/diags/examples/PrematureEOF.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/PrematureEOF.java
(line 26,col 20) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/ProcessorWrongType/ProcessorWrongType.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ProcessorWrongType/ProcessorWrongType.java
Parse error. Found "clas" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/RepeatedModifier.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/RepeatedModifier.java
(line 27,col 12) Duplicated modifier
-langtools-5ecbed313125/test/tools/javac/diags/examples/ThisAsIdentifier.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ThisAsIdentifier.java
(line 27,col 5) Parse error. Found "this", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/diags/examples/ThrowsNotAllowedInAnno.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/ThrowsNotAllowedInAnno.java
(line 27,col 18) Parse error. Found "throws", expected one of ";" "default"
-langtools-5ecbed313125/test/tools/javac/diags/examples/TryWithoutCatchOrFinally.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/TryWithoutCatchOrFinally.java
(line 29,col 9) Try has no finally, no catch, and no resources.
-langtools-5ecbed313125/test/tools/javac/diags/examples/TryWithoutCatchOrFinallyOrResource.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/TryWithoutCatchOrFinallyOrResource.java
(line 28,col 9) Try has no finally, no catch, and no resources.
-langtools-5ecbed313125/test/tools/javac/diags/examples/TypeReqClassArray.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/TypeReqClassArray.java
(line 30,col 34) Parse error. Found ")", expected "["
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnclosedCharLiteral.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnclosedCharLiteral.java
Lexical error at line 27, column 16. Encountered: ";" (59), after : "\'a"
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnclosedComment.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnclosedComment.java
Lexical error at line 31, column 0. Encountered: <EOF> after : ""
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnclosedStringLiteral.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnclosedStringLiteral.java
Lexical error at line 27, column 21. Encountered: "\n" (10), after : "\"abc;"
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnderscoreAsIdentifierError.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnderscoreAsIdentifierError.java
(line 27,col 12) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnderscoreAsIdentifierWarning.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnderscoreAsIdentifierWarning.java
(line 28,col 12) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnderscoreInLambdaExpression.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnderscoreInLambdaExpression.java
(line 26,col 52) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javac/diags/examples/UnexpectedTokenInModuleInfo/module-info.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/UnexpectedTokenInModuleInfo/module-info.java
Parse error. Found "weak" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/diags/examples/VarargsAndReceiver.java
+langtools-19293ea3999f/test/tools/javac/diags/examples/VarargsAndReceiver.java
(line 27,col 30) Parse error. Found "this", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/Digits.java
+langtools-19293ea3999f/test/tools/javac/Digits.java
(line 11,col 40) Parse error. Found "\\u0663" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/enum/EnumAsIdentifier.java
+langtools-19293ea3999f/test/tools/javac/enum/EnumAsIdentifier.java
(line 11,col 9) 'enum' cannot be used as an identifier as it is a keyword.
-langtools-5ecbed313125/test/tools/javac/enum/EnumMembersOrder.java
+langtools-19293ea3999f/test/tools/javac/enum/EnumMembersOrder.java
(line 11,col 10) Parse error. Found "d" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "(" ")" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/enum/ExplicitlyAbstractEnum1.java
+langtools-19293ea3999f/test/tools/javac/enum/ExplicitlyAbstractEnum1.java
(line 9,col 1) 'abstract' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/enum/ExplicitlyAbstractEnum2.java
+langtools-19293ea3999f/test/tools/javac/enum/ExplicitlyAbstractEnum2.java
(line 9,col 1) 'abstract' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/enum/ExplicitlyFinalEnum1.java
+langtools-19293ea3999f/test/tools/javac/enum/ExplicitlyFinalEnum1.java
(line 9,col 1) 'final' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/enum/ExplicitlyFinalEnum2.java
+langtools-19293ea3999f/test/tools/javac/enum/ExplicitlyFinalEnum2.java
(line 9,col 1) 'final' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/enum/LocalEnum.java
+langtools-19293ea3999f/test/tools/javac/enum/LocalEnum.java
(line 11,col 14) Parse error. Found "{", expected one of "," ";" "=" "@" "["
(line 13,col 2) Parse error. Found <EOF>, expected "}"
(line 13,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/EOI.java
+langtools-19293ea3999f/test/tools/javac/EOI.java
(line 10,col 16) Parse error. Found "foobar\u001a" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/ExtendArray.java
+langtools-19293ea3999f/test/tools/javac/ExtendArray.java
(line 11,col 34) Parse error. Found "[", expected one of "," "implements" "{"
-langtools-5ecbed313125/test/tools/javac/ExtraneousEquals.java
+langtools-19293ea3999f/test/tools/javac/ExtraneousEquals.java
(line 10,col 22) Parse error. Found "=", expected one of "!" "(" "+" "++" "-" "--" "@" "]" "boolean" "byte" "char" "double" "enum" "exports" "false" "float" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "short" "strictfp" "super" "this" "to" "transitive" "true" "uses" "void" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/failover/FailOver01.java
+langtools-19293ea3999f/test/tools/javac/failover/FailOver01.java
(line 10,col 20) Parse error. Found "}", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 10,col 26) Parse error. Found <EOF>, expected "}"
(line 10,col 26) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/failover/FailOver15.java
+langtools-19293ea3999f/test/tools/javac/failover/FailOver15.java
(line 17,col 9) Parse error. Found "}", expected one of "%=" "&=" "*=" "++" "+=" "--" "-=" "/=" ";" "<<=" "=" ">>=" ">>>=" "^=" "|="
(line 19,col 2) Parse error. Found <EOF>, expected "}"
(line 19,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/FloatingPointChanges/BadConstructorModifiers.java
+langtools-19293ea3999f/test/tools/javac/FloatingPointChanges/BadConstructorModifiers.java
(line 12,col 5) 'strictfp' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/generics/typevars/5060485/Compatibility02.java
+langtools-19293ea3999f/test/tools/javac/generics/typevars/5060485/Compatibility02.java
(line 36,col 9) 'static' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/generics/typevars/6680106/T6680106.java
+langtools-19293ea3999f/test/tools/javac/generics/typevars/6680106/T6680106.java
(line 11,col 24) Parse error. Found "[", expected one of "&" "," ">"
-langtools-5ecbed313125/test/tools/javac/IllegalAnnotation.java
+langtools-19293ea3999f/test/tools/javac/IllegalAnnotation.java
(line 9,col 5) Parse error. Found "@", expected "}"
(line 11,col 5) Parse error. Found "}", expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/incompleteStatements/T8000484.java
+langtools-19293ea3999f/test/tools/javac/incompleteStatements/T8000484.java
(line 9,col 14) Parse error. Found "catch", expected "}"
(line 10,col 29) Parse error. Found "else", expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/LabeledDeclaration.java
+langtools-19293ea3999f/test/tools/javac/LabeledDeclaration.java
(line 12,col 8) Parse error. Found "int", expected one of "(" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/lambda/8131742/T8131742.java
+langtools-19293ea3999f/test/tools/javac/lambda/8131742/T8131742.java
(line 8,col 32) Parse error. Found ".", expected one of ")" "," "@" "["
-langtools-5ecbed313125/test/tools/javac/lambda/BadLambdaPos.java
+langtools-19293ea3999f/test/tools/javac/lambda/BadLambdaPos.java
(line 18,col 26) Parse error. Found "+", expected one of ")" ","
(line 19,col 26) Parse error. Found "instanceof", expected one of ")" ","
(line 23,col 30) Parse error. Found "+", expected one of "," ";"
(line 24,col 33) Parse error. Found "instanceof", expected one of "," ";"
-langtools-5ecbed313125/test/tools/javac/lambda/BadStatementInLambda.java
+langtools-19293ea3999f/test/tools/javac/lambda/BadStatementInLambda.java
(line 18,col 19) Parse error. Found "1" <INTEGER_LITERAL>, expected "}"
-langtools-5ecbed313125/test/tools/javac/lambda/funcInterfaces/LambdaTest1_neg1.java
+langtools-19293ea3999f/test/tools/javac/lambda/funcInterfaces/LambdaTest1_neg1.java
(line 13,col 64) Parse error. Found "}", expected one of "," ";"
(line 15,col 2) Parse error. Found <EOF>, expected "}"
(line 15,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/lambda/IdentifierTest.java
+langtools-19293ea3999f/test/tools/javac/lambda/IdentifierTest.java
(line 41,col 11) '_' is a reserved keyword.
(line 44,col 16) '_' is a reserved keyword.
(line 45,col 20) '_' is a reserved keyword.
@@ -492,13 +481,13 @@ langtools-5ecbed313125/test/tools/javac/lambda/IdentifierTest.java
(line 174,col 19) '_' is a reserved keyword.
(line 180,col 11) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javac/lambda/lambdaExpression/InvalidExpression1.java
+langtools-19293ea3999f/test/tools/javac/lambda/lambdaExpression/InvalidExpression1.java
(line 15,col 66) Parse error. Found "}", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 16,col 5) Parse error. Found "}", expected one of "," ";"
(line 17,col 2) Parse error. Found <EOF>, expected "}"
(line 17,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/lambda/UnderscoreAsIdent.java
+langtools-19293ea3999f/test/tools/javac/lambda/UnderscoreAsIdent.java
(line 30,col 9) '_' is a reserved keyword.
(line 30,col 9) '_' is a reserved keyword.
(line 32,col 8) '_' is a reserved keyword.
@@ -517,114 +506,120 @@ langtools-5ecbed313125/test/tools/javac/lambda/UnderscoreAsIdent.java
(line 51,col 9) '_' is a reserved keyword.
(line 53,col 22) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javac/lambda/VoidLambdaParameter.java
+langtools-19293ea3999f/test/tools/javac/lambda/VoidLambdaParameter.java
(line 7,col 18) Parse error. Found "void", expected one of "!" "(" ")" "enum" "exports" "false" "module" "new" "null" "open" "opens" "provides" "requires" "strictfp" "super" "this" "to" "transitive" "true" "uses" "with" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/literals/BadBinaryLiterals.java
+langtools-19293ea3999f/test/tools/javac/literals/BadBinaryLiterals.java
(line 11,col 20) Parse error. Found "2" <INTEGER_LITERAL>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/literals/BadUnderscoreLiterals.java
+langtools-19293ea3999f/test/tools/javac/literals/BadUnderscoreLiterals.java
(line 15,col 14) Parse error. Found "_" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/literals/T6891079.java
+langtools-19293ea3999f/test/tools/javac/literals/T6891079.java
(line 8,col 14) Parse error. Found "B" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/modules/InvalidModuleDirective/module-info.java
+langtools-19293ea3999f/test/tools/javac/modules/InvalidModuleDirective/module-info.java
(line 9,col 21) Parse error. Found "resuires" <IDENTIFIER>, expected one of "exports" "opens" "provides" "requires" "uses" "}"
-langtools-5ecbed313125/test/tools/javac/overrridecrash/A.java
+langtools-19293ea3999f/test/tools/javac/overrridecrash/A.java
(line 25,col 5) Can have only one of 'protected', 'private'.
-langtools-5ecbed313125/test/tools/javac/overrridecrash/B.java
+langtools-19293ea3999f/test/tools/javac/overrridecrash/B.java
(line 12,col 5) Can have only one of 'protected', 'private'.
-langtools-5ecbed313125/test/tools/javac/Parens3.java
+langtools-19293ea3999f/test/tools/javac/Parens3.java
(line 12,col 9) Parse error. Found ":", expected one of "%=" "&=" "*=" "++" "+=" "--" "-=" "/=" ";" "<<=" "=" ">>=" ">>>=" "^=" "|="
-langtools-5ecbed313125/test/tools/javac/ParseConditional.java
+langtools-19293ea3999f/test/tools/javac/ParseConditional.java
(line 23,col 13) Illegal left hand side of an assignment.
-langtools-5ecbed313125/test/tools/javac/parser/7157165/T7157165.java
+langtools-19293ea3999f/test/tools/javac/parser/7157165/T7157165.java
(line 11,col 19) Parse error. Found "|", expected one of "," ">"
-langtools-5ecbed313125/test/tools/javac/parser/8081769/T8081769.java
+langtools-19293ea3999f/test/tools/javac/parser/8081769/T8081769.java
(line 9,col 20) Parse error. Found ".", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 10,col 20) Parse error. Found ".", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 11,col 20) Parse error. Found ".", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 12,col 20) Parse error. Found ".", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 14,col 31) Parse error. Found ".", expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/parser/ErroneousParameters.java
+langtools-19293ea3999f/test/tools/javac/parser/ErroneousParameters.java
(line 11,col 34) Parse error. Found "...", expected one of ")" "," "@" "["
-langtools-5ecbed313125/test/tools/javac/parser/MissingClosingBrace.java
+langtools-19293ea3999f/test/tools/javac/parser/MissingClosingBrace.java
(line 13,col 1) Parse error. Found <EOF>, expected one of "else" "}"
(line 13,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/parser/SingleCommaAnnotationValueFail.java
+langtools-19293ea3999f/test/tools/javac/parser/SingleCommaAnnotationValueFail.java
(line 34,col 11) Parse error. Found "0" <INTEGER_LITERAL>, expected "}"
-langtools-5ecbed313125/test/tools/javac/parser/T4881269.java
+langtools-19293ea3999f/test/tools/javac/parser/T4881269.java
(line 32,col 10) Parse error. Found ".", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/policy/test3/A.java
+langtools-19293ea3999f/test/tools/javac/policy/test3/A.java
(line 5,col 36) Parse error. Found "0" <INTEGER_LITERAL>, expected "}"
-langtools-5ecbed313125/test/tools/javac/processing/6994946/SyntaxErrorTest.java
+langtools-19293ea3999f/test/tools/javac/processing/6994946/SyntaxErrorTest.java
(line 14,col 9) Parse error. Found "}", expected "("
-langtools-5ecbed313125/test/tools/javac/processing/errors/TestParseErrors/ParseErrors.java
+langtools-19293ea3999f/test/tools/javac/processing/errors/TestParseErrors/ParseErrors.java
(line 37,col 36) Parse error. Found ",", expected one of "..." "@" "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/quid/T6999438.java
+langtools-19293ea3999f/test/tools/javac/quid/T6999438.java
Lexical error at line 8, column 9. Encountered: "#" (35), after : ""
-langtools-5ecbed313125/test/tools/javac/rawDiags/Error.java
+langtools-19293ea3999f/test/tools/javac/rawDiags/Error.java
(line 9,col 17) Parse error. Found <EOF>, expected "("
-langtools-5ecbed313125/test/tools/javac/StoreClass.java
+langtools-19293ea3999f/test/tools/javac/StoreClass.java
(line 12,col 9) Illegal left hand side of an assignment.
(line 13,col 9) Illegal left hand side of an assignment.
-langtools-5ecbed313125/test/tools/javac/SynchronizedClass.java
+langtools-19293ea3999f/test/tools/javac/SynchronizedClass.java
(line 9,col 1) 'synchronized' is not allowed here.
-langtools-5ecbed313125/test/tools/javac/T4994049/T4994049.java
+langtools-19293ea3999f/test/tools/javac/T4994049/T4994049.java
(line 11,col 5) Parse error. Found "BAR" <IDENTIFIER>, expected one of "," ";" "}"
-langtools-5ecbed313125/test/tools/javac/T6882235.java
+langtools-19293ea3999f/test/tools/javac/T6882235.java
(line 10,col 11) Parse error. Found ";", expected one of "!" "(" "+" "++" "-" "--" "@" "boolean" "byte" "char" "double" "enum" "exports" "false" "float" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "short" "strictfp" "super" "this" "to" "transitive" "true" "uses" "void" "with" "{" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
-langtools-5ecbed313125/test/tools/javac/T8026963/TypeAnnotationsCrashWithErroneousTreeTest.java
+langtools-19293ea3999f/test/tools/javac/T8026963/TypeAnnotationsCrashWithErroneousTreeTest.java
(line 9,col 19) Parse error. Found "this", expected one of ")" "@" "abstract" "boolean" "byte" "char" "default" "double" "enum" "exports" "final" "float" "int" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "volatile" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/T8171325/NPEClearingLocalClassNameIndexesTest.java
+langtools-19293ea3999f/test/tools/javac/T8171325/NPEClearingLocalClassNameIndexesTest.java
(line 19,col 42) Type arguments may not be primitive.
-langtools-5ecbed313125/test/tools/javac/T8175198/AnnotationsAndFormalParamsTest.java
+langtools-19293ea3999f/test/tools/javac/T8175198/AnnotationsAndFormalParamsTest.java
(line 9,col 14) Parse error. Found "int", expected ")"
-langtools-5ecbed313125/test/tools/javac/TryWithResources/BadTwrSyntax.java
+langtools-19293ea3999f/test/tools/javac/T8181464/LambdaInAnnotationsCausesNPETest1.java
+(line 10,col 15) Parse error. Found "->", expected one of "!=" "%" "&" "&&" "(" ")" "*" "+" "," "-" "/" "<" "<=" "==" ">" ">=" "?" "^" "instanceof" "|" "||"
+
+langtools-19293ea3999f/test/tools/javac/T8181464/LambdaInAnnotationsCausesNPETest2.java
+(line 10,col 24) Parse error. Found "->", expected one of "!=" "%" "&" "&&" ")" "*" "+" "," "-" "/" "<" "<=" "==" ">" ">=" "?" "^" "instanceof" "|" "||"
+
+langtools-19293ea3999f/test/tools/javac/TryWithResources/BadTwrSyntax.java
(line 14,col 42) Parse error. Found ";", expected ")"
(line 14,col 43) Parse error. Found ")", expected "}"
(line 16,col 9) Parse error. Found "try", expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/TryWithResources/PlainTry.java
+langtools-19293ea3999f/test/tools/javac/TryWithResources/PlainTry.java
(line 11,col 9) Try has no finally, no catch, and no resources.
-langtools-5ecbed313125/test/tools/javac/TryWithResources/ResDeclOutsideTry.java
+langtools-19293ea3999f/test/tools/javac/TryWithResources/ResDeclOutsideTry.java
(line 14,col 14) Parse error. Found "=", expected one of "(" ")"
(line 14,col 48) Parse error. Found ")", expected "}"
(line 15,col 9) Parse error. Found "return", expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/TryWithResources/TwrForVariable2.java
+langtools-19293ea3999f/test/tools/javac/TryWithResources/TwrForVariable2.java
(line 13,col 13) Parse error. Found "final", expected one of "(" "@" "boolean" "byte" "char" "double" "enum" "exports" "false" "float" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "short" "strictfp" "super" "this" "to" "transitive" "true" "uses" "void" "with" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 15,col 9) Parse error. Found "try", expected one of ";" "<" "@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" "int" "interface" "long" "module" "native" "open" "opens" "private" "protected" "provides" "public" "requires" "short" "static" "strictfp" "synchronized" "to" "transient" "transitive" "uses" "void" "volatile" "with" "{" "}" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javac/unicode/FirstChar2.java
+langtools-19293ea3999f/test/tools/javac/unicode/FirstChar2.java
Parse error. Found "\\u0070ublic" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "default" "enum" "final" "import" "interface" "module" "native" "open" "private" "protected" "public" "static" "strictfp" "synchronized" "transient" "transitive" "volatile" <EOF>
-langtools-5ecbed313125/test/tools/javac/unicode/NonasciiDigit.java
+langtools-19293ea3999f/test/tools/javac/unicode/NonasciiDigit.java
(line 13,col 18) Parse error. Found "\\uff11" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 16,col 21) Parse error. Found ".0" <FLOATING_POINT_LITERAL>, expected one of "!=" "%" "%=" "&" "&&" "&=" "(" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
(line 17,col 21) Parse error. Found "\\uff11" <IDENTIFIER>, expected one of "!=" "%" "%=" "&" "&&" "&=" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
@@ -633,28 +628,28 @@ langtools-5ecbed313125/test/tools/javac/unicode/NonasciiDigit.java
(line 20,col 19) Parse error. Found ".", expected one of "!" "(" "+" "++" "-" "--" "@" "boolean" "byte" "char" "double" "enum" "exports" "false" "float" "int" "long" "module" "new" "null" "open" "opens" "provides" "requires" "short" "strictfp" "super" "this" "to" "transitive" "true" "uses" "void" "with" "{" "~" <CHARACTER_LITERAL> <FLOATING_POINT_LITERAL> <IDENTIFIER> <INTEGER_LITERAL> <LONG_LITERAL> <STRING_LITERAL>
(line 21,col 21) Parse error. Found ".0" <FLOATING_POINT_LITERAL>, expected one of "!=" "%" "%=" "&" "&&" "&=" "(" "*" "*=" "+" "+=" "," "-" "-=" "->" "/" "/=" "::" ";" "<" "<<=" "<=" "=" "==" ">" ">=" ">>=" ">>>=" "?" "^" "^=" "instanceof" "|" "|=" "||"
-langtools-5ecbed313125/test/tools/javac/unicode/TripleQuote.java
+langtools-19293ea3999f/test/tools/javac/unicode/TripleQuote.java
Lexical error at line 13, column 15. Encountered: "\'" (39), after : "\'"
-langtools-5ecbed313125/test/tools/javac/unicode/UnicodeAtEOL.java
+langtools-19293ea3999f/test/tools/javac/unicode/UnicodeAtEOL.java
(line 33,col 13) Parse error. Found "\\u000D" <IDENTIFIER>, expected "}"
-langtools-5ecbed313125/test/tools/javac/unicode/UnicodeCommentDelimiter.java
+langtools-19293ea3999f/test/tools/javac/unicode/UnicodeCommentDelimiter.java
(line 44,col 22) Parse error. Found "plugh" <IDENTIFIER>, expected one of "," ";" "=" "@" "["
-langtools-5ecbed313125/test/tools/javac/VoidArray.java
+langtools-19293ea3999f/test/tools/javac/VoidArray.java
(line 12,col 5) Parse error. Found "[", expected one of "enum" "exports" "module" "open" "opens" "provides" "requires" "strictfp" "to" "transitive" "uses" "with" <IDENTIFIER>
-langtools-5ecbed313125/test/tools/javadoc/6964914/Error.java
+langtools-19293ea3999f/test/tools/javadoc/6964914/Error.java
(line 25,col 12) Parse error. Found "}", expected "("
-langtools-5ecbed313125/test/tools/javadoc/6964914/JavacWarning.java
+langtools-19293ea3999f/test/tools/javadoc/6964914/JavacWarning.java
(line 25,col 12) '_' is a reserved keyword.
-langtools-5ecbed313125/test/tools/javadoc/enum/docComments/pkg1/Operation.java
+langtools-19293ea3999f/test/tools/javadoc/enum/docComments/pkg1/Operation.java
(line 33,col 1) 'abstract' is not allowed here.
-langtools-5ecbed313125/test/tools/javadoc/T4994049/FileWithTabs.java
+langtools-19293ea3999f/test/tools/javadoc/T4994049/FileWithTabs.java
Lexical error at line 25, column 2. Encountered: "t" (116), after : "\\"
-305 problems in 177 files \ No newline at end of file
+304 problems in 175 files \ No newline at end of file