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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,7 @@ class ScalaSettings extends Settings.SettingGroup with CommonScalaSettings {
123
123
valXverifySignatures:Setting[Boolean] =BooleanSetting("-Xverify-signatures", "Verify generic signatures in generated bytecode.")
124
124
valXignoreScala2Macros:Setting[Boolean] =BooleanSetting("-Xignore-scala2-macros", "Ignore errors when compiling code that calls Scala2 macros, these will fail at runtime.")
125
125
valXimportSuggestionTimeout:Setting[Int] =IntSetting("-Ximport-suggestion-timeout", "Timeout (in ms) for searching for import suggestions when errors are reported.", 8000)
126
+
valXsemanticdb:Setting[Boolean] =BooleanSetting("-Xsemanticdb", "Store information in SemanticDB.").withAbbreviation("-Ysemanticdb")
126
127
127
128
valXmixinForceForwarders=ChoiceSetting(
128
129
name ="-Xmixin-force-forwarders",
@@ -183,7 +184,6 @@ class ScalaSettings extends Settings.SettingGroup with CommonScalaSettings {
183
184
valYdumpSbtInc:Setting[Boolean] =BooleanSetting("-Ydump-sbt-inc", "For every compiled foo.scala, output the API representation and dependencies used for sbt incremental compilation in foo.inc, implies -Yforce-sbt-phases.")
184
185
valYcheckAllPatmat:Setting[Boolean] =BooleanSetting("-Ycheck-all-patmat", "Check exhaustivity and redundancy of all pattern matching (used for testing the algorithm).")
185
186
valYretainTrees:Setting[Boolean] =BooleanSetting("-Yretain-trees", "Retain trees for top-level classes, accessible from ClassSymbol#tree")
186
-
valYsemanticdb:Setting[Boolean] =BooleanSetting("-Ysemanticdb", "Store information in SemanticDB.")
187
187
valYshowTreeIds:Setting[Boolean] =BooleanSetting("-Yshow-tree-ids", "Uniquely tag all tree nodes in debugging output.")
188
188
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")
0 commit comments