Revert "[FE 1.0] Resolve setters through the new type inference infra"

This reverts commit 6e191147b9.
This commit is contained in:
Mikhail Glukhikh
2022-09-12 11:28:30 +02:00
committed by Space
parent 8be08d903b
commit a9b8f6715b
12 changed files with 58 additions and 70 deletions
@@ -95,7 +95,6 @@ fun PsiElement.nextLeaf(filter: (PsiElement) -> Boolean): PsiElement? {
return leaf
}
@SafeVarargs
fun <T : PsiElement> PsiElement.getParentOfTypes(strict: Boolean = false, vararg parentClasses: Class<out T>): T? {
return getParentOfTypesAndPredicate(strict, *parentClasses) { true }
}