AA: handle PsiType conversion for recursive type parameter case (again)

^KT-64595 fixed
This commit is contained in:
Jinseong Jeon
2023-12-27 20:22:24 -08:00
committed by Space Team
parent 93f1555322
commit f1ce57f08f
8 changed files with 54 additions and 13 deletions
@@ -77,9 +77,15 @@ public class FirStandaloneNormalAnalysisSourceModuleAnalysisApiExpressionPsiType
}
@Test
@TestMetadata("recursiveTypeParameter.kt")
public void testRecursiveTypeParameter() throws Exception {
runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/forExpression/recursiveTypeParameter.kt");
@TestMetadata("recursiveTypeParameter_localSimple.kt")
public void testRecursiveTypeParameter_localSimple() throws Exception {
runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/forExpression/recursiveTypeParameter_localSimple.kt");
}
@Test
@TestMetadata("recursiveTypeParameter_localWithTypeParameter.kt")
public void testRecursiveTypeParameter_localWithTypeParameter() throws Exception {
runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/forExpression/recursiveTypeParameter_localWithTypeParameter.kt");
}
@Test