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
Copy file name to clipboardExpand all lines: compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ class ScalaSettings extends Settings.SettingGroup {
45
45
vallanguage:Setting[List[String]] =MultiStringSetting("-language", "feature", "Enable one or more language features.") withAbbreviation "--language"
46
46
valrewrite:Setting[Option[Rewrites]] =OptionSetting[Rewrites]("-rewrite", "When used in conjunction with a `...-migration` source version, rewrites sources to migrate to new version.") withAbbreviation "--rewrite"
47
47
valsilentWarnings:Setting[Boolean] =BooleanSetting("-nowarn", "Silence all warnings.") withAbbreviation "--no-warnings"
48
-
valfromTasty:Setting[Boolean] =BooleanSetting("-from-tasty", "Compile classes from tasty in classpath. The arguments are used as class names.") withAbbreviation "--from-tasty"
48
+
valfromTasty:Setting[Boolean] =BooleanSetting("-from-tasty", "Compile classes from tasty files. The arguments are .tasty or .jar files.") withAbbreviation "--from-tasty"
49
49
50
50
valnewSyntax:Setting[Boolean] =BooleanSetting("-new-syntax", "Require `then` and `do` in control expressions.")
51
51
valoldSyntax:Setting[Boolean] =BooleanSetting("-old-syntax", "Require `(...)` around conditions.")
@@ -158,6 +158,7 @@ class ScalaSettings extends Settings.SettingGroup {
158
158
valYretainTrees:Setting[Boolean] =BooleanSetting("-Yretain-trees", "Retain trees for top-level classes, accessible from ClassSymbol#tree")
159
159
valYsemanticdb:Setting[Boolean] =BooleanSetting("-Ysemanticdb", "Store information in SemanticDB.")
160
160
valYshowTreeIds:Setting[Boolean] =BooleanSetting("-Yshow-tree-ids", "Uniquely tag all tree nodes in debugging output.")
161
+
valYfromTastyIgnoreList:Setting[List[String]] =MultiStringSetting("-Yfrom-tasty-ignore-list", "file", "List of `tasty` files in jar files that will not be loaded when using -from-tasty")
valYprofileDestination:Setting[String] =StringSetting("-Yprofile-destination", "file", "Where to send profiling output - specify a file, default is to the console.", "")
0 commit comments