Skip to content

Commit f91fff5

Browse files
awturnerError Prone Team
authored and
Error Prone Team
committed
ASTHelpers: add getAnnotations method, to allow extraction of annotations from annotatable Trees without a ModifierTree (e.g. TypeParameterTree)
PiperOrigin-RevId: 405887249
1 parent cdfa8b8 commit f91fff5

File tree

1 file changed

+34
-4
lines changed

1 file changed

+34
-4
lines changed

check_api/src/main/java/com/google/errorprone/util/ASTHelpers.java

+34-4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
import com.google.errorprone.matchers.TestNgMatchers;
4646
import com.google.errorprone.suppliers.Supplier;
4747
import com.google.errorprone.suppliers.Suppliers;
48+
import com.sun.source.tree.AnnotatedTypeTree;
4849
import com.sun.source.tree.AnnotationTree;
4950
import com.sun.source.tree.ArrayAccessTree;
5051
import com.sun.source.tree.AssertTree;
@@ -70,6 +71,7 @@
7071
import com.sun.source.tree.MethodInvocationTree;
7172
import com.sun.source.tree.MethodTree;
7273
import com.sun.source.tree.ModifiersTree;
74+
import com.sun.source.tree.ModuleTree;
7375
import com.sun.source.tree.NewArrayTree;
7476
import com.sun.source.tree.NewClassTree;
7577
import com.sun.source.tree.PackageTree;
@@ -1168,13 +1170,41 @@ public static boolean isSameType(Type s, Type t, VisitorState state) {
11681170
public static ModifiersTree getModifiers(Tree tree) {
11691171
if (tree instanceof ClassTree) {
11701172
return ((ClassTree) tree).getModifiers();
1171-
} else if (tree instanceof MethodTree) {
1173+
}
1174+
if (tree instanceof MethodTree) {
11721175
return ((MethodTree) tree).getModifiers();
1173-
} else if (tree instanceof VariableTree) {
1176+
}
1177+
if (tree instanceof VariableTree) {
11741178
return ((VariableTree) tree).getModifiers();
1175-
} else {
1176-
return null;
11771179
}
1180+
if (tree instanceof ModifiersTree) {
1181+
return (ModifiersTree) tree;
1182+
}
1183+
return null;
1184+
}
1185+
1186+
/** Returns the annotations of the given tree, or an empty list. */
1187+
public static List<? extends AnnotationTree> getAnnotations(Tree tree) {
1188+
if (tree instanceof TypeParameterTree) {
1189+
return ((TypeParameterTree) tree).getAnnotations();
1190+
}
1191+
if (tree instanceof ModuleTree) {
1192+
return ((ModuleTree) tree).getAnnotations();
1193+
}
1194+
if (tree instanceof PackageTree) {
1195+
return ((PackageTree) tree).getAnnotations();
1196+
}
1197+
if (tree instanceof NewArrayTree) {
1198+
return ((NewArrayTree) tree).getAnnotations();
1199+
}
1200+
if (tree instanceof AnnotatedTypeTree) {
1201+
return ((AnnotatedTypeTree) tree).getAnnotations();
1202+
}
1203+
if (tree instanceof ModifiersTree) {
1204+
return ((ModifiersTree) tree).getAnnotations();
1205+
}
1206+
ModifiersTree modifiersTree = getModifiers(tree);
1207+
return modifiersTree == null ? ImmutableList.of() : modifiersTree.getAnnotations();
11781208
}
11791209

11801210
/**

0 commit comments

Comments
 (0)