
commonMain.co.touchlab.skie.kir.irbuilder.Namespace.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-linker-plugin-kgp_2.1.0 Show documentation
Show all versions of kotlin-compiler-linker-plugin-kgp_2.1.0 Show documentation
Kotlin compiler plugin that improves Swift interface of a Kotlin Multiplatform framework.
package co.touchlab.skie.kir.irbuilder
import co.touchlab.skie.kir.descriptor.MutableDescriptorProvider
import co.touchlab.skie.phases.KotlinIrPhase
import co.touchlab.skie.phases.SymbolTablePhase
import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
import org.jetbrains.kotlin.descriptors.SourceElement
interface Namespace {
val descriptor: D
val sourceElement: SourceElement
context(MutableDescriptorProvider)
fun addTemplate(declarationTemplate: DeclarationTemplate<*>)
context(SymbolTablePhase.Context)
fun registerSymbols()
context(KotlinIrPhase.Context)
fun generateIrDeclarations()
context(KotlinIrPhase.Context)
fun generateIrBodies()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy