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
@@ -70,6 +70,7 @@ class ScalaSettings extends Settings.SettingGroup {
70
70
valXprintTypes:Setting[Boolean] =BooleanSetting("-Xprint-types", "Print tree types (debugging option).")
71
71
valXprintDiff:Setting[Boolean] =BooleanSetting("-Xprint-diff", "Print changed parts of the tree since last print.")
72
72
valXprintDiffDel:Setting[Boolean] =BooleanSetting("-Xprint-diff-del", "Print changed parts of the tree since last print including deleted parts.")
73
+
valXprintInline:Setting[Boolean] =BooleanSetting("-Xprint-inline", "Show where inlined code comes from")
73
74
valXprompt:Setting[Boolean] =BooleanSetting("-Xprompt", "Display a prompt after each error (debugging option).")
74
75
valXmainClass:Setting[String] =StringSetting("-Xmain-class", "path", "Class for manifest's Main-Class entry (only useful with -d <jar>)", "")
75
76
valXnoValueClasses:Setting[Boolean] =BooleanSetting("-Xno-value-classes", "Do not use value classes. Helps debugging.")
@@ -157,7 +158,6 @@ class ScalaSettings extends Settings.SettingGroup {
157
158
valYexplainLowlevel:Setting[Boolean] =BooleanSetting("-Yexplain-lowlevel", "When explaining type errors, show types at a lower level.")
158
159
valYnoDoubleBindings:Setting[Boolean] =BooleanSetting("-Yno-double-bindings", "Assert no namedtype is bound twice (should be enabled only if program is error-free).")
159
160
valYshowVarBounds:Setting[Boolean] =BooleanSetting("-Yshow-var-bounds", "Print type variables with their bounds")
160
-
valYshowNoInline:Setting[Boolean] =BooleanSetting("-Yshow-no-inline", "Show inlined code without the 'inlined from' info")
161
161
162
162
valYnoDecodeStacktraces:Setting[Boolean] =BooleanSetting("-Yno-decode-stacktraces", "Show raw StackOverflow stacktraces, instead of decoding them into triggering operations.")
0 commit comments