com.google.devtools.ksp.cmdline.KSPJsMain.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symbol-processing-cmdline Show documentation
Show all versions of symbol-processing-cmdline Show documentation
Symbol processing for K/N and command line
package com.google.devtools.ksp.cmdline
import com.google.devtools.ksp.processing.kspJsArgParser
import com.google.devtools.ksp.processing.kspJsArgParserHelp
class KSPJsMain {
companion object {
@JvmStatic
fun main(args: Array) {
if ("-h" in args || "--help" in args) {
printHelpMsg(kspJsArgParserHelp())
} else {
runWithArgs(args, ::kspJsArgParser)
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy