app.softwork.kobol.plugins.ir.optimizations.IfAssignments.kt Maven / Gradle / Ivy
package app.softwork.kobol.plugins.ir.optimizations
import app.softwork.kobol.ir.*
import app.softwork.serviceloader.ServiceLoader
@ServiceLoader(IrPlugin::class)
public class IfAssignments : IrPlugin {
override fun invoke(tree: KobolIRTree, others: Iterable): Iterable {
return others + tree
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy