Drop some usages of KotlinBuiltIns.getInstance() in idea module

This commit is contained in:
Pavel V. Talanov
2015-09-21 20:31:25 +03:00
parent f1c76f0467
commit 51113c10b4
30 changed files with 99 additions and 64 deletions
@@ -934,7 +934,12 @@ public class KotlinBuiltIns {
return isAny(getFqName(descriptor));
}
public static boolean isAny(@NotNull JetType type) {
return isConstructedFromGivenClassAndNotNullable(type, FQ_NAMES.any);
}
public static boolean isBoolean(@NotNull JetType type) {
return isConstructedFromGivenClassAndNotNullable(type, FQ_NAMES._boolean);
}