Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8328543: [lworld] Library and test updates to use --enable-preview instead of ValhallaFeatures #1060

Closed
Original file line number Diff line number Diff line change
@@ -25,6 +25,8 @@

package java.lang.reflect;

import jdk.internal.javac.PreviewFeature;

import java.util.Collections;
import java.util.Objects;
import java.util.Map;
@@ -185,7 +187,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
* @apiNote
* In Java SE 8 and above, the JVM treats the {@code ACC_SUPER}
* flag as set in every class file (JVMS {@jvms 4.1}).
* For class file versions up to but not including Valhalla,
* For class file versions up to but not including PreviewFeature VALUE_OBJECTS,
* {@code 0x0020} access flag bit is {@linkplain #SUPER SUPER access flag}; otherwise,
* the {@code 0x0020} access flag bit is {@linkplain #IDENTITY IDENTITY access flag}.
*/
@@ -203,6 +205,7 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
* value of <code>{@value "0x%04x" Modifier#IDENTITY}</code>.
* @jvms 4.1 -B. Class access and property modifiers
*/
@PreviewFeature(feature = PreviewFeature.Feature.VALUE_OBJECTS)
IDENTITY(Modifier.IDENTITY, false,
Location.SET_CLASS_INNER_CLASS,
new Function<ClassFileFormatVersion, Set<Location>>() {
1 change: 1 addition & 0 deletions src/java.base/share/classes/module-info.java
Original file line number Diff line number Diff line change
@@ -150,6 +150,7 @@
java.desktop, // for ScopedValue
jdk.compiler,
jdk.incubator.vector,
jdk.jfr,
jdk.jshell;
exports jdk.internal.access to
java.desktop,