
commonMain.co.touchlab.skie.context.SymbolTablePhaseContext.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_1.8.20 Show documentation
Show all versions of kotlin-compiler-linker-plugin-kgp_1.8.20 Show documentation
Kotlin compiler plugin that improves Swift interface of a Kotlin Multiplatform framework.
package co.touchlab.skie.context
import co.touchlab.skie.kir.irbuilder.impl.DeclarationBuilderImpl
import co.touchlab.skie.kir.util.SkieSymbolTable
import co.touchlab.skie.phases.SymbolTablePhase
import org.jetbrains.kotlin.ir.util.SymbolTable
class SymbolTablePhaseContext(
mainSkieContext: MainSkieContext,
symbolTable: SymbolTable,
) : SymbolTablePhase.Context, ForegroundPhaseCompilerContext by mainSkieContext {
override val context: SymbolTablePhaseContext = this
val declarationBuilder: DeclarationBuilderImpl = mainSkieContext.declarationBuilder
val skieSymbolTable: SkieSymbolTable = SkieSymbolTable(symbolTable)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy