You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
valsemanticdbTarget:Setting[String] =PathSetting(RootSetting, "semanticdb-target", "Specify an alternative output directory for SemanticDB files.", "")
77
83
valsemanticdbText:Setting[Boolean] =BooleanSetting(RootSetting, "semanticdb-text", "Specifies whether to include source code in SemanticDB files or not.")
valuniqid:Setting[Boolean] =BooleanSetting(RootSetting, "uniqid", "Uniquely tag all identifiers in debugging output.", aliases =List("--unique-id"))
81
87
valrewrite:Setting[Option[Rewrites]] =OptionSetting[Rewrites](RootSetting, "rewrite", "When used in conjunction with a `...-migration` source version, rewrites sources to migrate to new version.", aliases =List("--rewrite"))
82
88
valfromTasty:Setting[Boolean] =BooleanSetting(RootSetting, "from-tasty", "Compile classes from tasty files. The arguments are .tasty or .jar files.", aliases =List("--from-tasty"))
valclasspath:Setting[String] =PathSetting(RootSetting, "classpath", "Specify where to find user class files.", ScalaSettings.defaultClasspath, aliases =List("-cp", "--class-path"))
128
+
valclasspath:Setting[String] =PathSetting(RootSetting, "classpath", "Specify where to find user class files.", ScalaSettingsProperties.defaultClasspath, aliases =List("-cp", "--class-path"))
123
129
valoutputDir:Setting[AbstractFile] =OutputSetting(RootSetting, "d", "directory|jar", "Destination for generated classfiles.",
valsilentWarnings:Setting[Boolean] =BooleanSetting(RootSetting, "nowarn", "Silence all warnings.", aliases =List("--no-warnings"))
131
137
132
-
valjavaOutputVersion:Setting[String] =ChoiceSetting(RootSetting, "java-output-version", "version", "Compile code with classes specific to the given version of the Java platform available on the classpath and emit bytecode for this version. Corresponds to -release flag in javac.", ScalaSettings.supportedReleaseVersions, "", aliases =List("-release", "--release"))
138
+
valjavaOutputVersion:Setting[String] =ChoiceSetting(RootSetting, "java-output-version", "version", "Compile code with classes specific to the given version of the Java platform available on the classpath and emit bytecode for this version. Corresponds to -release flag in javac.", ScalaSettingsProperties.supportedReleaseVersions, "", aliases =List("-release", "--release"))
133
139
134
140
valdeprecation:Setting[Boolean] =BooleanSetting(RootSetting, "deprecation", "Emit warning and location for usages of deprecated APIs.", aliases =List("--deprecation"))
135
141
valfeature:Setting[Boolean] =BooleanSetting(RootSetting, "feature", "Emit warning and location for usages of features that should be imported explicitly.", aliases =List("--feature"))
valXignoreScala2Macros:Setting[Boolean] =BooleanSetting(AdvancedSetting, "Xignore-scala2-macros", "Ignore errors when compiling code that calls Scala2 macros, these will fail at runtime.")
339
345
valXimportSuggestionTimeout:Setting[Int] =IntSetting(AdvancedSetting, "Ximport-suggestion-timeout", "Timeout (in ms) for searching for import suggestions when errors are reported.", 8000)
340
346
valXsemanticdb:Setting[Boolean] =BooleanSetting(AdvancedSetting, "Xsemanticdb", "Store information in SemanticDB.", aliases =List("-Ysemanticdb"))
341
-
valXuncheckedJavaOutputVersion:Setting[String] =ChoiceSetting(AdvancedSetting, "Xunchecked-java-output-version", "target", "Emit bytecode for the specified version of the Java platform. This might produce bytecode that will break at runtime. Corresponds to -target flag in javac. When on JDK 9+, consider -java-output-version as a safer alternative.", ScalaSettings.supportedTargetVersions, "", aliases =List("-Xtarget", "--Xtarget"))
347
+
valXuncheckedJavaOutputVersion:Setting[String] =ChoiceSetting(AdvancedSetting, "Xunchecked-java-output-version", "target", "Emit bytecode for the specified version of the Java platform. This might produce bytecode that will break at runtime. Corresponds to -target flag in javac. When on JDK 9+, consider -java-output-version as a safer alternative.", ScalaSettingsProperties.supportedTargetVersions, "", aliases =List("-Xtarget", "--Xtarget"))
342
348
valXcheckMacros:Setting[Boolean] =BooleanSetting(AdvancedSetting, "Xcheck-macros", "Check some invariants of macro generated code while expanding macros", aliases =List("--Xcheck-macros"))
343
349
valXmainClass:Setting[String] =StringSetting(AdvancedSetting, "Xmain-class", "path", "Class for manifest's Main-Class entry (only useful with -d <jar>)", "")
344
350
valXimplicitSearchLimit:Setting[Int] =IntSetting(AdvancedSetting, "Ximplicit-search-limit", "Maximal number of expressions to be generated in an implicit search", 50000)
0 commit comments