Skip to content

Commit d50b725

Browse files
committedDec 18, 2024
8344647: Make java.se participate in the preview language feature requires transitive java.base
Reviewed-by: asotona, darcy
1 parent 9e8aa85 commit d50b725

File tree

8 files changed

+57
-10
lines changed

8 files changed

+57
-10
lines changed
 

‎src/java.base/share/classes/module-info.java

-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@
155155
exports jdk.internal.javac to
156156
java.compiler,
157157
java.desktop, // for ScopedValue
158-
java.se, // for ParticipatesInPreview
159158
jdk.compiler,
160159
jdk.incubator.vector, // participates in preview features
161160
jdk.jartool, // participates in preview features

‎src/java.se/share/classes/module-info.java

-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
* questions.
2424
*/
2525

26-
import jdk.internal.javac.ParticipatesInPreview;
27-
2826
/**
2927
* Defines the API of the Java SE Platform.
3028
*
@@ -40,7 +38,6 @@
4038
* @moduleGraph
4139
* @since 9
4240
*/
43-
@ParticipatesInPreview
4441
module java.se {
4542
requires transitive java.base;
4643
requires transitive java.compiler;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Directive.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static int value(Set<RequiresFlag> s) {
7676

7777
@Override
7878
public String toString() {
79-
return String.format("ACC_%s (0x%04x", name(), value);
79+
return String.format("ACC_%s (0x%04x)", name(), value);
8080
}
8181
}
8282

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Preview.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ public boolean participatesInPreview(Symtab syms, ModuleSymbol m) {
152152
// s participates in the preview API
153153
return syms.java_base.exports.stream()
154154
.filter(ed -> ed.packge.fullname == names.jdk_internal_javac)
155-
.anyMatch(ed -> ed.modules.contains(m));
155+
.anyMatch(ed -> ed.modules.contains(m)) ||
156+
//the specification lists the java.se module as participating in preview:
157+
m.name == names.java_se;
156158
}
157159

158160
/**

‎src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3887,7 +3887,7 @@ compiler.misc.cant.resolve.modules=\
38873887
cannot resolve modules
38883888

38893889
compiler.misc.bad.requires.flag=\
3890-
bad requires flag: {0}
3890+
invalid flag for "requires java.base": {0}
38913891

38923892
# 0: string
38933893
compiler.err.invalid.module.specifier=\

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java

+2
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ public static Names instance(Context context) {
127127

128128
// module names
129129
public final Name java_base;
130+
public final Name java_se;
130131
public final Name jdk_unsupported;
131132

132133
// attribute names
@@ -315,6 +316,7 @@ public Names(Context context) {
315316

316317
// module names
317318
java_base = fromString("java.base");
319+
java_se = fromString("java.se");
318320
jdk_unsupported = fromString("jdk.unsupported");
319321

320322
// attribute names

‎test/langtools/tools/javac/ImportModule.java

+49-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @test
26-
* @bug 8328481 8332236 8332890
26+
* @bug 8328481 8332236 8332890 8344647
2727
* @summary Check behavior of module imports.
2828
* @library /tools/lib
2929
* @modules java.logging
@@ -33,7 +33,7 @@
3333
* jdk.compiler/com.sun.tools.javac.util
3434
* @build toolbox.ToolBox toolbox.JavacTask
3535
* @run main ImportModule
36-
*/
36+
*/
3737

3838
import com.sun.source.tree.Tree;
3939
import com.sun.source.util.TaskEvent;
@@ -829,6 +829,7 @@ public class Test {
829829
}
830830
}
831831

832+
@Test
832833
public void testPackageImportDisambiguates(Path base) throws Exception {
833834
Path current = base.resolve(".");
834835
Path src = current.resolve("src");
@@ -919,4 +920,50 @@ public class Test {
919920
.run(Task.Expect.SUCCESS)
920921
.writeAll();
921922
}
923+
924+
@Test //JDK-8344647
925+
public void testJavaBaseOverride(Path base) throws Exception {
926+
Path current = base.resolve(".");
927+
Path src = current.resolve("src");
928+
Path javaBaseClasses = current.resolve("javaBaseClasses");
929+
Path javaBase = src.resolve("java.base");
930+
tb.writeJavaFiles(javaBase,
931+
"""
932+
module java.base {
933+
exports java.lang;
934+
}
935+
""",
936+
"""
937+
package java.lang;
938+
public class Object {}
939+
""");
940+
941+
Files.createDirectories(javaBaseClasses);
942+
943+
new JavacTask(tb)
944+
.options("--patch-module", "java.base=" + src.toString())
945+
.outdir(javaBaseClasses)
946+
.files(tb.findJavaFiles(src))
947+
.run(Task.Expect.SUCCESS)
948+
.writeAll()
949+
.getOutputLines(Task.OutputKind.DIRECT);
950+
951+
Path test = current.resolve("test");
952+
tb.writeJavaFiles(test,
953+
"""
954+
module test {
955+
requires java.se;
956+
}
957+
""");
958+
959+
Path classes = current.resolve("classes");
960+
Files.createDirectories(classes);
961+
962+
new JavacTask(tb)
963+
.options("--patch-module", "java.base=" + javaBaseClasses.toString())
964+
.outdir(classes)
965+
.files(tb.findJavaFiles(test))
966+
.run(Task.Expect.SUCCESS)
967+
.writeAll();
968+
}
922969
}

‎test/langtools/tools/javac/modules/AnnotationsOnModules.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ public class C {}
804804
.writeAll()
805805
.getOutputLines(OutputKind.DIRECT);
806806
List<String> expectedErrors = List.of(
807-
"- compiler.err.cant.access: m.module-info, (compiler.misc.bad.class.file.header: module-info.class, (compiler.misc.bad.requires.flag: ACC_TRANSITIVE (0x0020))",
807+
"- compiler.err.cant.access: m.module-info, (compiler.misc.bad.class.file.header: module-info.class, (compiler.misc.bad.requires.flag: ACC_TRANSITIVE (0x0020)))",
808808
"1 error"
809809
);
810810

0 commit comments

Comments
 (0)
Please sign in to comment.