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
@@ -77,7 +77,6 @@ class ScalaSettings extends Settings.SettingGroup with CommonScalaSettings {
77
77
valsemanticdbTarget:Setting[String] =PathSetting("-semanticdb-target", "Specify an alternative output directory for SemanticDB files.", "")
78
78
79
79
valdeprecation:Setting[Boolean] =BooleanSetting("-deprecation", "Emit warning and location for usages of deprecated APIs.") withAbbreviation "--deprecation"
80
-
valexplainTypes:Setting[Boolean] =BooleanSetting("-explain-types", "Explain type errors in more detail.") withAbbreviation "--explain-types"
81
80
valexplain:Setting[Boolean] =BooleanSetting("-explain", "Explain errors in more detail.") withAbbreviation "--explain"
82
81
valfeature:Setting[Boolean] =BooleanSetting("-feature", "Emit warning and location for usages of features that should be imported explicitly.") withAbbreviation "--feature"
83
82
valhelp:Setting[Boolean] =BooleanSetting("-help", "Print a synopsis of standard options.") withAbbreviation "--help"
@@ -204,6 +203,7 @@ class ScalaSettings extends Settings.SettingGroup with CommonScalaSettings {
204
203
205
204
/** Area-specific debug output */
206
205
valYexplainLowlevel:Setting[Boolean] =BooleanSetting("-Yexplain-lowlevel", "When explaining type errors, show types at a lower level.")
206
+
valYexplainTypes:Setting[Boolean] =BooleanSetting("-Yexplain-types", "Explain type errors in more detail.")
207
207
valYnoDoubleBindings:Setting[Boolean] =BooleanSetting("-Yno-double-bindings", "Assert no namedtype is bound twice (should be enabled only if program is error-free).")
208
208
valYshowVarBounds:Setting[Boolean] =BooleanSetting("-Yshow-var-bounds", "Print type variables with their bounds.")
0 commit comments