Skip to content

Commit

Permalink
Update Kotlin compiler to 1.9.20-RC2
Browse files Browse the repository at this point in the history
The current changes are related to JetBrains/kotlin@d797505
  • Loading branch information
vmishenev committed Oct 24, 2023
1 parent 820e3b7 commit 14f45c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kotlinx-collections-immutable = "0.3.6"
kotlinx-bcv = "0.13.2"

## Analysis
kotlin-compiler = "1.9.10"
kotlin-compiler = "1.9.20-RC2"
kotlin-compiler-k2 = "1.9.30-dev-3330"

# MUST match the version of the intellij platform used in the kotlin compiler,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ internal class DokkaJsResolverForModuleFactory(
metadataFactories.DefaultDescriptorFactory,
metadataFactories.DefaultPackageFragmentsFactory,
metadataFactories.flexibleTypeDeserializer,
metadataFactories.platformDependentTypeTransformer
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import org.jetbrains.kotlin.library.metadata.DeserializedKlibModuleOrigin
import org.jetbrains.kotlin.incremental.components.LookupTracker
import org.jetbrains.kotlin.library.metadata.KlibMetadataFactories
import org.jetbrains.kotlin.library.KotlinLibrary
import org.jetbrains.kotlin.library.metadata.NativeTypeTransformer
import org.jetbrains.kotlin.library.metadata.NullFlexibleTypeDeserializer
import org.jetbrains.kotlin.library.metadata.parseModuleHeader
import org.jetbrains.kotlin.name.Name
Expand Down Expand Up @@ -107,8 +106,7 @@ internal class DokkaKlibMetadataCommonDependencyContainer(
KlibMetadataModuleDescriptorFactoryImpl(
MetadataFactories.DefaultDescriptorFactory,
MetadataFactories.DefaultPackageFragmentsFactory,
MetadataFactories.flexibleTypeDeserializer,
MetadataFactories.platformDependentTypeTransformer
MetadataFactories.flexibleTypeDeserializer
)
}

Expand Down Expand Up @@ -138,6 +136,5 @@ internal class DokkaKlibMetadataCommonDependencyContainer(
private val MetadataFactories =
KlibMetadataFactories(
{ DefaultBuiltIns.Instance },
NullFlexibleTypeDeserializer,
NativeTypeTransformer()
NullFlexibleTypeDeserializer
)

0 comments on commit 14f45c6

Please sign in to comment.