[FIR] Improve performance of missing supertype detection

^KT-62619 Fixed
This commit is contained in:
Brian Norman
2023-10-26 07:40:52 -05:00
committed by Space Team
parent c55dc2578a
commit 1bb5e97b62
4 changed files with 69 additions and 42 deletions
@@ -92,6 +92,7 @@ fun FirSession.registerCommonComponents(languageVersionSettings: LanguageVersion
register(FirAnnotationsPlatformSpecificSupportComponent::class, FirAnnotationsPlatformSpecificSupportComponent.Default)
register(FirPrimaryConstructorSuperTypeCheckerPlatformComponent::class, FirPrimaryConstructorSuperTypeCheckerPlatformComponent.Default)
register(FirGenericArrayClassLiteralSupport::class, FirGenericArrayClassLiteralSupport.Disabled)
register(FirMissingDependencyStorage::class, FirMissingDependencyStorage(this))
}
@OptIn(SessionConfiguration::class)