|
45 | 45 | import com.google.errorprone.matchers.TestNgMatchers;
|
46 | 46 | import com.google.errorprone.suppliers.Supplier;
|
47 | 47 | import com.google.errorprone.suppliers.Suppliers;
|
| 48 | +import com.sun.source.tree.AnnotatedTypeTree; |
48 | 49 | import com.sun.source.tree.AnnotationTree;
|
49 | 50 | import com.sun.source.tree.ArrayAccessTree;
|
50 | 51 | import com.sun.source.tree.AssertTree;
|
|
70 | 71 | import com.sun.source.tree.MethodInvocationTree;
|
71 | 72 | import com.sun.source.tree.MethodTree;
|
72 | 73 | import com.sun.source.tree.ModifiersTree;
|
| 74 | +import com.sun.source.tree.ModuleTree; |
73 | 75 | import com.sun.source.tree.NewArrayTree;
|
74 | 76 | import com.sun.source.tree.NewClassTree;
|
75 | 77 | import com.sun.source.tree.PackageTree;
|
@@ -1168,13 +1170,41 @@ public static boolean isSameType(Type s, Type t, VisitorState state) {
|
1168 | 1170 | public static ModifiersTree getModifiers(Tree tree) {
|
1169 | 1171 | if (tree instanceof ClassTree) {
|
1170 | 1172 | return ((ClassTree) tree).getModifiers();
|
1171 |
| - } else if (tree instanceof MethodTree) { |
| 1173 | + } |
| 1174 | + if (tree instanceof MethodTree) { |
1172 | 1175 | return ((MethodTree) tree).getModifiers();
|
1173 |
| - } else if (tree instanceof VariableTree) { |
| 1176 | + } |
| 1177 | + if (tree instanceof VariableTree) { |
1174 | 1178 | return ((VariableTree) tree).getModifiers();
|
1175 |
| - } else { |
1176 |
| - return null; |
1177 | 1179 | }
|
| 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(); |
1178 | 1208 | }
|
1179 | 1209 |
|
1180 | 1210 | /**
|
|
0 commit comments