com.vk.compiler.plugin.recompose.highlighter.RecomposeHighlighterIrGeneration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-plugin Show documentation
Show all versions of compiler-plugin Show documentation
Utilities for Jetpack Compose
The newest version!
package com.vk.compiler.plugin.recompose.highlighter
import org.jetbrains.kotlin.backend.common.extensions.IrGenerationExtension
import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
import org.jetbrains.kotlin.ir.visitors.transformChildrenVoid
class RecomposeHighlighterIrGeneration : IrGenerationExtension {
override fun generate(moduleFragment: IrModuleFragment, pluginContext: IrPluginContext) =
moduleFragment.transformChildrenVoid(RecomposeHighlighter(pluginContext))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy