Minor, rephrase usage help for -no-stdlib/-no-reflect compiler arguments
This commit is contained in:
+2
-2
@@ -49,11 +49,11 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
|
||||
var noJdk: Boolean by FreezableVar(false)
|
||||
|
||||
@GradleOption(DefaultValues.BooleanTrueDefault::class)
|
||||
@Argument(value = "-no-stdlib", description = "Don't include Kotlin runtime into classpath")
|
||||
@Argument(value = "-no-stdlib", description = "Don't include kotlin-stdlib.jar or kotlin-reflect.jar into classpath")
|
||||
var noStdlib: Boolean by FreezableVar(false)
|
||||
|
||||
@GradleOption(DefaultValues.BooleanTrueDefault::class)
|
||||
@Argument(value = "-no-reflect", description = "Don't include Kotlin reflection implementation into classpath")
|
||||
@Argument(value = "-no-reflect", description = "Don't include kotlin-reflect.jar into classpath")
|
||||
var noReflect: Boolean by FreezableVar(false)
|
||||
|
||||
@Argument(value = "-script", description = "Evaluate the script file")
|
||||
|
||||
Reference in New Issue
Block a user