All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.de.jensklingenberg.ktorfit.KtorfitIrGenerationExtension.kt Maven / Gradle / Ivy

The newest version!
package de.jensklingenberg.ktorfit

import org.jetbrains.kotlin.backend.common.extensions.IrGenerationExtension
import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
import org.jetbrains.kotlin.ir.declarations.IrModuleFragment

internal class KtorfitIrGenerationExtension(private val debugLogger: DebugLogger) : IrGenerationExtension {
    override fun generate(
        moduleFragment: IrModuleFragment,
        pluginContext: IrPluginContext,
    ) {
        moduleFragment.transform(ElementTransformer(pluginContext, debugLogger), null)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy