app.softwork.kobol.plugins.fir.renaming.KeepNames.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-keepnames Show documentation
Show all versions of plugin-keepnames Show documentation
A Cobol to Kotlin converter
The newest version!
package app.softwork.kobol.plugins.fir.renaming
import app.softwork.kobol.fir.FirPluginBeforePhase
import app.softwork.serviceloader.ServiceLoader
@ServiceLoader(FirPluginBeforePhase::class)
public class KeepNames : Rename(
functions = {
keepName()
},
variables = {
keepName()
},
classes = {
keepName()
},
)
private fun String.keepName() = replace("-", "_")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy