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
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -51,35 +51,35 @@ class ScalaSettings extends Settings.SettingGroup {
51
51
/** -X "Advanced" settings
52
52
*/
53
53
valXhelp=BooleanSetting("-X", "Print a synopsis of advanced options.")
54
-
valnoForwarders=BooleanSetting("-Xno-forwarders", "Do not generate static forwarders in mirror classes.")
54
+
valXnoForwarders=BooleanSetting("-Xno-forwarders", "Do not generate static forwarders in mirror classes.")
55
55
valXminImplicitSearchDepth=IntSetting("-Xmin-implicit-search-depth", "Set number of levels of implicit searches undertaken before checking for divergence.", 5)
56
56
valxmaxInlines=IntSetting("-Xmax-inlines", "Maximal number of successive inlines", 32)
57
-
valmaxClassfileName=IntSetting("-Xmax-classfile-name", "Maximum filename length for generated classes", 255, 72 to 255)
57
+
valXmaxClassfileName=IntSetting("-Xmax-classfile-name", "Maximum filename length for generated classes", 255, 72 to 255)
58
58
valXmigration=VersionSetting("-Xmigration", "Warn about constructs whose behavior may have changed since version.")
59
59
valXprint=PhasesSetting("-Xprint", "Print out program after")
60
-
valprinttypes=BooleanSetting("-Xprint-types", "Print tree types (debugging option).")
60
+
valXprintTypes=BooleanSetting("-Xprint-types", "Print tree types (debugging option).")
61
61
valXprintDiff=BooleanSetting("-Xprint-diff", "Print changed parts of the tree since last print.")
62
62
valXprintDiffDel=BooleanSetting("-Xprint-diff-del", "Print chaged parts of the tree since last print including deleted parts.")
63
-
valprompt=BooleanSetting("-Xprompt", "Display a prompt after each error (debugging option).")
64
-
valmainClass=StringSetting("-Xmain-class", "path", "Class for manifest's Main-Class entry (only useful with -d <jar>)", "")
63
+
valXprompt=BooleanSetting("-Xprompt", "Display a prompt after each error (debugging option).")
64
+
valXmainClass=StringSetting("-Xmain-class", "path", "Class for manifest's Main-Class entry (only useful with -d <jar>)", "")
65
65
valXnoValueClasses=BooleanSetting("-Xno-value-classes", "Do not use value classes. Helps debugging.")
66
66
valXreplLineWidth=IntSetting("-Xrepl-line-width", "Maximial number of columns per line for REPL output", 390)
67
67
valXfatalWarnings=BooleanSetting("-Xfatal-warnings", "Fail the compilation if there are any warnings.")
68
68
valXverifySignatures=BooleanSetting("-Xverify-signatures", "Verify generic signatures in generated bytecode.")
69
69
70
70
/** -Y "Private" settings */
71
-
valoverrideVars=BooleanSetting("-Yoverride-vars", "Allow vars to be overridden.")
71
+
valYoverrideVars=BooleanSetting("-Yoverride-vars", "Allow vars to be overridden.")
72
72
valYhelp=BooleanSetting("-Y", "Print a synopsis of private options.")
73
73
valYcheck=PhasesSetting("-Ycheck", "Check the tree at the end of")
74
74
valYcheckMods=BooleanSetting("-Ycheck-mods", "Check that symbols and their defining trees have modifiers in sync")
75
-
valdebug=BooleanSetting("-Ydebug", "Increase the quantity of debugging output.")
valYemitTasty=BooleanSetting("-Yemit-tasty", "Generate tasty in separate *.tasty file.")
83
83
valYlogcp=BooleanSetting("-Ylog-classpath", "Output information about what classpath is being applied.")
84
84
valYdisableFlatCpCaching=BooleanSetting("-YdisableFlatCpCaching", "Do not cache flat classpath representation of classpath elements from jars across compiler instances.")
85
85
@@ -95,7 +95,7 @@ class ScalaSettings extends Settings.SettingGroup {
95
95
valYshowSuppressedErrors=BooleanSetting("-Yshow-suppressed-errors", "Also show follow-on errors and warnings that are normally supressed.")
96
96
valYdetailedStats=BooleanSetting("-Ydetailed-stats", "show detailed internal compiler stats (needs Stats.enabled to be set to true).")
97
97
valYheartbeat=BooleanSetting("-Ydetailed-stats", "show heartbeat stack trace of compiler operations (needs Stats.enabled to be set to true).")
98
-
valYprintpos=BooleanSetting("-Yprintpos", "show tree positions.")
98
+
valYprintPos=BooleanSetting("-Yprint-pos", "show tree positions.")
99
99
valYnoDeepSubtypes=BooleanSetting("-Yno-deep-subtypes", "throw an exception on deep subtyping call stacks.")
100
100
valYnoPatmatOpt=BooleanSetting("-Yno-patmat-opt", "disable all pattern matching optimizations.")
101
101
valYplainPrinter=BooleanSetting("-Yplain-printer", "Pretty-print using a plain printer.")
@@ -111,16 +111,16 @@ class ScalaSettings extends Settings.SettingGroup {
111
111
valYshowTreeIds=BooleanSetting("-Yshow-tree-ids", "Uniquely tag all tree nodes in debugging output.")
112
112
113
113
/** Area-specific debug output */
114
-
valYexplainlowlevel=BooleanSetting("-Yexplain-lowlevel", "When explaining type errors, show types at a lower level.")
114
+
valYexplainLowlevel=BooleanSetting("-Yexplain-lowlevel", "When explaining type errors, show types at a lower level.")
115
115
valYnoDoubleBindings=BooleanSetting("-Yno-double-bindings", "Assert no namedtype is bound twice (should be enabled only if program is error-free).")
116
116
valYshowVarBounds=BooleanSetting("-Yshow-var-bounds", "Print type variables with their bounds")
0 commit comments