Force resolve type annotations

This commit is contained in:
Yan Zhulanow
2015-08-05 15:19:52 +03:00
parent a3ba1af421
commit 54f0da300c
@@ -94,6 +94,7 @@ public class ForceResolveUtil {
public static JetType forceResolveAllContents(@Nullable JetType type) {
if (type == null) return null;
forceResolveAllContents(type.getAnnotations());
if (TypesPackage.isFlexible(type)) {
forceResolveAllContents(TypesPackage.flexibility(type).getLowerBound());
forceResolveAllContents(TypesPackage.flexibility(type).getUpperBound());