Skip to content

Commit 6133866

Browse files
committedOct 11, 2024
8341070: javac fails with an exception when compiling import module under source level 8
Reviewed-by: asotona
1 parent 519544c commit 6133866

File tree

2 files changed

+63
-19
lines changed

2 files changed

+63
-19
lines changed
 

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

+17-19
Original file line numberDiff line numberDiff line change
@@ -420,14 +420,30 @@ protected Symtab(Context context) throws CompletionFailure {
420420
missingInfoHandler,
421421
target.runtimeUseNestAccess());
422422

423+
noModule = new ModuleSymbol(names.empty, null) {
424+
@Override public boolean isNoModule() {
425+
return true;
426+
}
427+
};
428+
addRootPackageFor(noModule);
429+
430+
Source source = Source.instance(context);
431+
if (Feature.MODULES.allowedInSource(source)) {
432+
java_base = enterModule(names.java_base);
433+
//avoid completing java.base during the Symtab initialization
434+
java_base.completer = Completer.NULL_COMPLETER;
435+
java_base.visiblePackages = Collections.emptyMap();
436+
} else {
437+
java_base = noModule;
438+
}
439+
423440
// create the basic builtin symbols
424441
unnamedModule = new ModuleSymbol(names.empty, null) {
425442
{
426443
directives = List.nil();
427444
exports = List.nil();
428445
provides = List.nil();
429446
uses = List.nil();
430-
ModuleSymbol java_base = enterModule(names.java_base);
431447
com.sun.tools.javac.code.Directive.RequiresDirective d =
432448
new com.sun.tools.javac.code.Directive.RequiresDirective(java_base,
433449
EnumSet.of(com.sun.tools.javac.code.Directive.RequiresFlag.MANDATED));
@@ -447,7 +463,6 @@ public String toString() {
447463
exports = List.nil();
448464
provides = List.nil();
449465
uses = List.nil();
450-
ModuleSymbol java_base = enterModule(names.java_base);
451466
com.sun.tools.javac.code.Directive.RequiresDirective d =
452467
new com.sun.tools.javac.code.Directive.RequiresDirective(java_base,
453468
EnumSet.of(com.sun.tools.javac.code.Directive.RequiresFlag.MANDATED));
@@ -456,13 +471,6 @@ public String toString() {
456471
};
457472
addRootPackageFor(errModule);
458473

459-
noModule = new ModuleSymbol(names.empty, null) {
460-
@Override public boolean isNoModule() {
461-
return true;
462-
}
463-
};
464-
addRootPackageFor(noModule);
465-
466474
noSymbol = new TypeSymbol(NIL, 0, names.empty, Type.noType, rootPackage) {
467475
@Override @DefinedBy(Api.LANGUAGE_MODEL)
468476
public <R, P> R accept(ElementVisitor<R, P> v, P p) {
@@ -526,16 +534,6 @@ public <R, P> R accept(ElementVisitor<R, P> v, P p) {
526534
// Enter symbol for the errSymbol
527535
scope.enter(errSymbol);
528536

529-
Source source = Source.instance(context);
530-
if (Feature.MODULES.allowedInSource(source)) {
531-
java_base = enterModule(names.java_base);
532-
//avoid completing java.base during the Symtab initialization
533-
java_base.completer = Completer.NULL_COMPLETER;
534-
java_base.visiblePackages = Collections.emptyMap();
535-
} else {
536-
java_base = noModule;
537-
}
538-
539537
// Get the initial completer for ModuleSymbols from Modules
540538
moduleCompleter = Modules.instance(context).getCompleter();
541539

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

+46
Original file line numberDiff line numberDiff line change
@@ -797,4 +797,50 @@ public class C {}
797797

798798
}
799799
}
800+
801+
@Test
802+
public void testImportModuleNoModules(Path base) throws Exception {
803+
Path current = base.resolve(".");
804+
Path src = current.resolve("src");
805+
Path classes = current.resolve("classes");
806+
tb.writeJavaFiles(src,
807+
"""
808+
package test;
809+
import module java.base;
810+
public class Test {
811+
List<String> l;
812+
}
813+
""");
814+
815+
Files.createDirectories(classes);
816+
817+
List<String> actualErrors = new JavacTask(tb)
818+
.options("--release", "8",
819+
"-XDshould-stop.at=FLOW",
820+
"-XDdev",
821+
"-XDrawDiagnostics")
822+
.outdir(classes)
823+
.files(tb.findJavaFiles(src))
824+
.run(Task.Expect.FAIL)
825+
.writeAll()
826+
.getOutputLines(Task.OutputKind.DIRECT);
827+
828+
List<String> expectedErrors = List.of(
829+
"- compiler.warn.option.obsolete.source: 8",
830+
"- compiler.warn.option.obsolete.target: 8",
831+
"- compiler.warn.option.obsolete.suppression",
832+
"Test.java:2:8: compiler.err.preview.feature.disabled.plural: (compiler.misc.feature.module.imports)",
833+
"Test.java:2:1: compiler.err.import.module.not.found: java.base",
834+
"Test.java:4:5: compiler.err.cant.resolve.location: kindname.class, List, , , (compiler.misc.location: kindname.class, test.Test, null)",
835+
"3 errors",
836+
"3 warnings"
837+
);
838+
839+
if (!Objects.equals(expectedErrors, actualErrors)) {
840+
throw new AssertionError("Incorrect Output, expected: " + expectedErrors +
841+
", actual: " + out);
842+
843+
}
844+
}
845+
800846
}

0 commit comments

Comments
 (0)
Please sign in to comment.