src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassFile.java
changeset 55382 30b1b7b4dd86
parent 54568 b2ed96c35687
equal deleted inserted replaced
55381:7c9151c7dc40 55382:30b1b7b4dd86
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   112         V52(52, 0),   // JDK 1.8: lambda, type annos, param names
   112         V52(52, 0),   // JDK 1.8: lambda, type annos, param names
   113         V53(53, 0),   // JDK 1.9: modules, indy string concat
   113         V53(53, 0),   // JDK 1.9: modules, indy string concat
   114         V54(54, 0),   // JDK 10
   114         V54(54, 0),   // JDK 10
   115         V55(55, 0),   // JDK 11: constant dynamic, nest mates
   115         V55(55, 0),   // JDK 11: constant dynamic, nest mates
   116         V56(56, 0),   // JDK 12
   116         V56(56, 0),   // JDK 12
   117         V57(57, 0);   // JDK 13
   117         V57(57, 0),   // JDK 13
       
   118         V58(58, 0);   // JDK 14
   118         Version(int major, int minor) {
   119         Version(int major, int minor) {
   119             this.major = major;
   120             this.major = major;
   120             this.minor = minor;
   121             this.minor = minor;
   121         }
   122         }
   122         public final int major, minor;
   123         public final int major, minor;