Skip to content

Commit 5a45de5

Browse files
committedJan 31, 2025
8347989: Trees.getScope may crash for not-yet attributed source
Reviewed-by: asotona
1 parent 2df9d5b commit 5a45de5

File tree

2 files changed

+91
-4
lines changed

2 files changed

+91
-4
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Enter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -546,7 +546,7 @@ public void visitClassDef(JCClassDecl tree) {
546546

547547
// Assert.checkNonNull(c.modle, c.sourcefile.toString());
548548

549-
result = c.type;
549+
result = tree.type = c.type;
550550
}
551551
//where
552552
/** Does class have the same name as the file it appears in?

‎test/langtools/tools/javac/api/TestGetScopeResult.java

+89-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8205418 8207229 8207230 8230847 8245786 8247334 8248641 8240658 8246774 8274347
26+
* @bug 8205418 8207229 8207230 8230847 8245786 8247334 8248641 8240658 8246774 8274347 8347989
2727
* @summary Test the outcomes from Trees.getScope
2828
* @modules jdk.compiler/com.sun.tools.javac.api
2929
* jdk.compiler/com.sun.tools.javac.comp
@@ -52,6 +52,7 @@
5252
import com.sun.source.tree.LambdaExpressionTree;
5353
import com.sun.source.tree.MethodInvocationTree;
5454
import com.sun.source.tree.MethodTree;
55+
import com.sun.source.tree.ReturnTree;
5556
import com.sun.source.tree.Scope;
5657
import com.sun.source.tree.Tree;
5758
import com.sun.source.tree.VariableTree;
@@ -73,7 +74,12 @@
7374
import com.sun.tools.javac.tree.JCTree.JCStatement;
7475
import com.sun.tools.javac.util.Context;
7576
import com.sun.tools.javac.util.Context.Factory;
77+
import java.util.Objects;
7678
import javax.lang.model.element.TypeElement;
79+
import javax.lang.model.type.DeclaredType;
80+
import javax.lang.model.type.TypeKind;
81+
import javax.lang.model.type.TypeMirror;
82+
import javax.lang.model.type.TypeVariable;
7783
import javax.lang.model.util.ElementFilter;
7884
import javax.tools.JavaFileObject;
7985

@@ -93,6 +99,7 @@ public static void main(String... args) throws IOException {
9399
new TestGetScopeResult().testRuleCases();
94100
new TestGetScopeResult().testNestedSwitchExpression();
95101
new TestGetScopeResult().testModuleImportScope();
102+
new TestGetScopeResult().testClassTypeSetInEnterGetScope();
96103
}
97104

98105
public void run() throws IOException {
@@ -885,6 +892,80 @@ class Test {
885892
}
886893
}
887894

895+
//JDK-8347989
896+
void testClassTypeSetInEnterGetScope() throws IOException {
897+
JavacTool c = JavacTool.create();
898+
try (StandardJavaFileManager fm = c.getStandardFileManager(null, null, null)) {
899+
String code = """
900+
import java.util.*;
901+
class Test<T extends Test&CharSequence> extends ArrayList
902+
implements List {
903+
private int test(boolean b) {
904+
int v = b ? test(!b) : 0;
905+
return v;
906+
}
907+
}
908+
""";
909+
Context ctx = new Context();
910+
TestAnalyzer.preRegister(ctx);
911+
JavaFileObject input =
912+
SimpleJavaFileObject.forSource(URI.create("myfo:///Test.java"), code);
913+
JavacTask t = (JavacTask) c.getTask(null, fm, null, null, null,
914+
List.of(input),
915+
ctx);
916+
Trees trees = Trees.instance(t);
917+
List<List<String>> actual = new ArrayList<>();
918+
919+
t.addTaskListener(new TaskListener() {
920+
@Override
921+
public void finished(TaskEvent e) {
922+
if (e.getKind() != TaskEvent.Kind.ENTER) {
923+
return ;
924+
}
925+
926+
new TreePathScanner<Void, Void>() {
927+
@Override
928+
public Void visitClass(ClassTree node, Void p) {
929+
TypeMirror type = trees.getTypeMirror(getCurrentPath());
930+
if (type == null) {
931+
throw new AssertionError("Expected class type 'Test', but got: null");
932+
}
933+
assertEquals(TypeKind.DECLARED, type.getKind());
934+
DeclaredType decl = (DeclaredType) type;
935+
TypeVariable tvar = (TypeVariable) decl.getTypeArguments().get(0);
936+
assertEquals("T", tvar.asElement().getSimpleName().toString());
937+
assertEquals("Test&java.lang.CharSequence", tvar.getUpperBound().toString());
938+
TypeElement clazz = (TypeElement) decl.asElement();
939+
assertEquals("java.util.ArrayList", clazz.getSuperclass().toString().toString());
940+
assertEquals("java.util.List", clazz.getInterfaces().toString().toString());
941+
return super.visitClass(node, p);
942+
}
943+
@Override
944+
public Void visitReturn(ReturnTree rt, Void p) {
945+
Scope scope = trees.getScope(getCurrentPath());
946+
actual.add(dumpScope(scope));
947+
return super.visitReturn(rt, p);
948+
}
949+
}.scan(e.getCompilationUnit(), null);
950+
}
951+
});
952+
953+
t.analyze();
954+
955+
List<List<String>> expected =
956+
List.of(List.of("v:int",
957+
"b:boolean",
958+
"super:java.util.ArrayList",
959+
"this:Test<T>",
960+
"T:T"
961+
));
962+
963+
if (!expected.equals(actual)) {
964+
throw new AssertionError("Unexpected Scope content: " + actual);
965+
}
966+
}
967+
}
968+
888969
private List<String> dumpScope(Scope scope) {
889970
List<String> content = new ArrayList<>();
890971
while (scope.getEnclosingClass() != null) {
@@ -908,4 +989,10 @@ private void asssertScopeContainsTypeWithFQN(Scope scope, String fqn) {
908989
", but it is missing.");
909990
}
910991

992+
private void assertEquals(Object expected, Object actual) {
993+
if (!Objects.equals(expected, actual)) {
994+
throw new AssertionError("Expected: '" + expected + "', " +
995+
"but got: '" + actual + "'");
996+
}
997+
}
911998
}

0 commit comments

Comments
 (0)