Use WarningAwareUpperBoundChecker independently

^KT-47920 Fixed
^KT-48290 Fixed
This commit is contained in:
Victor Petukhov
2021-09-28 13:17:57 +03:00
parent d9c50f0fda
commit b957831683
10 changed files with 22 additions and 19 deletions
@@ -12,7 +12,7 @@ import org.jetbrains.kotlin.resolve.*
import org.jetbrains.kotlin.storage.StorageManager
private object CommonPlatformConfigurator : PlatformConfiguratorBase() {
override fun configureModuleComponents(container: StorageComponentContainer, languageVersionSettings: LanguageVersionSettings) {}
override fun configureModuleComponents(container: StorageComponentContainer) {}
}
object CommonPlatformAnalyzerServices : PlatformDependentAnalyzerServices() {
@@ -75,7 +75,7 @@ fun StorageComponentContainer.configureModule(
useInstance(nonTrivialPlatformVersion ?: TargetPlatformVersion.NoVersion)
analyzerServices.platformConfigurator.configureModuleComponents(this, languageVersionSettings)
analyzerServices.platformConfigurator.configureModuleComponents(this)
analyzerServices.platformConfigurator.configureModuleDependentCheckers(this)
for (extension in StorageComponentContainerContributor.getInstances(moduleContext.project)) {