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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ class ScalaSettings extends Settings.SettingGroup {
61
61
valXnoValueClasses=BooleanSetting("-Xno-value-classes", "Do not use value classes. Helps debugging.")
62
62
valXreplLineWidth=IntSetting("-Xrepl-line-width", "Maximial number of columns per line for REPL output", 390)
63
63
valXfatalWarnings=BooleanSetting("-Xfatal-warnings", "Fail the compilation if there are any warnings.")
64
+
valXverifySignatures=BooleanSetting("-Xverify-signatures", "Verify generic signatures in generated bytecode.")
64
65
65
66
/** -Y "Private" settings */
66
67
valoverrideVars=BooleanSetting("-Yoverride-vars", "Allow vars to be overridden.")
@@ -79,6 +80,7 @@ class ScalaSettings extends Settings.SettingGroup {
79
80
valYdisableFlatCpCaching=BooleanSetting("-YdisableFlatCpCaching", "Do not cache flat classpath representation of classpath elements from jars across compiler instances.")
80
81
81
82
valYnoImports=BooleanSetting("-Yno-imports", "Compile without importing scala.*, java.lang.*, or Predef.")
83
+
valYnoGenericSig=BooleanSetting("-Yno-generic-signatures", "Suppress generation of generic signatures for Java.")
82
84
valYnoPredef=BooleanSetting("-Yno-predef", "Compile without importing Predef.")
83
85
valYskip=PhasesSetting("-Yskip", "Skip")
84
86
valYdumpclasses=StringSetting("-Ydump-classes", "dir", "Dump the generated bytecode to .class files (useful for reflective compilation that utilizes in-memory classloaders).", "")
0 commit comments