arrow.meta.phases.codegen.ir.IRGeneration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arrow-meta Show documentation
Show all versions of arrow-meta Show documentation
Functional companion to Kotlin's Standard Library
package arrow.meta.phases.codegen.ir
import arrow.meta.phases.CompilerContext
import arrow.meta.phases.ExtensionPhase
import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
/**
* @see [ExtensionPhase]
* @see [arrow.meta.dsl.codegen.ir.IrSyntax]
*/
interface IRGeneration : ExtensionPhase {
fun CompilerContext.generate(moduleFragment: IrModuleFragment, pluginContext: IrPluginContext)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy