8273146: Start of release updates for JDK 19

8277511: Add SourceVersion.RELEASE_19
8277513: Add source 19 and target 19 to javac

Reviewed-by: dholmes, alanb, erikj, iris, mikael, ihse
This commit is contained in:
Joe Darcy 2021-12-09 17:01:59 +00:00 committed by Jesper Wilhelmsson
parent 6dae52f8e3
commit 09831e7aa4
67 changed files with 5872 additions and 46 deletions

View file

@ -53,7 +53,8 @@ public class ClassVersionChecker {
FIFTEEN("15", 59),
SIXTEEN("16", 60),
SEVENTEEN("17", 61),
EIGHTEEN("18", 62);
EIGHTEEN("18", 62),
NINETEEN("19", 63);
private Version(String release, int classFileVer) {
this.release = release;