arrow.meta.phases.analysis.ExtraImports.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.analysis
import arrow.meta.phases.CompilerContext
import arrow.meta.phases.ExtensionPhase
import org.jetbrains.kotlin.psi.KtFile
import org.jetbrains.kotlin.psi.KtImportInfo
/**
* @see [ExtensionPhase]
* @see [arrow.meta.dsl.analysis.AnalysisSyntax.extraImports]
*/
interface ExtraImports : ExtensionPhase {
fun CompilerContext.extraImports(ktFile: KtFile): Collection
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy