src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassFile.java
changeset 50892 a5557f24b4d4
parent 49580 62b908c9f0e6
child 53023 6879069d9d94
equal deleted inserted replaced
50891:9948ea5ea1af 50892:a5557f24b4d4
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2018, 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
   113         V50(50, 0),   // JDK 1.6: stackmaps
   113         V50(50, 0),   // JDK 1.6: stackmaps
   114         V51(51, 0),   // JDK 1.7
   114         V51(51, 0),   // JDK 1.7
   115         V52(52, 0),   // JDK 1.8: lambda, type annos, param names
   115         V52(52, 0),   // JDK 1.8: lambda, type annos, param names
   116         V53(53, 0),   // JDK 1.9: modules, indy string concat
   116         V53(53, 0),   // JDK 1.9: modules, indy string concat
   117         V54(54, 0),   // JDK 10
   117         V54(54, 0),   // JDK 10
   118         V55(55, 0);   // JDK 11: constant dynamic
   118         V55(55, 0),   // JDK 11: constant dynamic, nest mates
       
   119         V56(56, 0);   // JDK 12
   119         Version(int major, int minor) {
   120         Version(int major, int minor) {
   120             this.major = major;
   121             this.major = major;
   121             this.minor = minor;
   122             this.minor = minor;
   122         }
   123         }
   123         public final int major, minor;
   124         public final int major, minor;