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
valYemitTastyInClass:Setting[Boolean] =BooleanSetting("-Yemit-tasty-in-class", "Generate tasty in the .class file and add an empty *.hasTasty file.")
120
120
valYlogClasspath:Setting[Boolean] =BooleanSetting("-Ylog-classpath", "Output information about what classpath is being applied.")
121
121
valYdisableFlatCpCaching:Setting[Boolean] =BooleanSetting("-YdisableFlatCpCaching", "Do not cache flat classpath representation of classpath elements from jars across compiler instances.")
@@ -126,10 +126,10 @@ class ScalaSettings extends Settings.SettingGroup {
valYdumpclasses:Setting[String] =StringSetting("-Ydump-classes", "dir", "Dump the generated bytecode to .class files (useful for reflective compilation that utilizes in-memory classloaders).", "")
valYstopBefore:Setting[List[String]] =PhasesSetting("-Ystop-before", "Stop before") // stop before erasure as long as we have not debugged it fully
133
133
valYtraceContextCreation:Setting[Boolean] =BooleanSetting("-Ytrace-context-creation", "Store stack trace of context creations.")
134
134
valYshowSuppressedErrors:Setting[Boolean] =BooleanSetting("-Yshow-suppressed-errors", "Also show follow-on errors and warnings that are normally suppressed.")
135
135
valYdetailedStats:Setting[Boolean] =BooleanSetting("-Ydetailed-stats", "Show detailed internal compiler stats (needs Stats.enabled to be set to true).")
@@ -147,11 +147,11 @@ class ScalaSettings extends Settings.SettingGroup {
147
147
valYtestPickler:Setting[Boolean] =BooleanSetting("-Ytest-pickler", "Self-test for pickling functionality; should be used with -Ystop-after:pickler.")
148
148
valYcheckReentrant:Setting[Boolean] =BooleanSetting("-Ycheck-reentrant", "Check that compiled program does not contain vars that can be accessed from a global root.")
149
149
valYdropComments:Setting[Boolean] =BooleanSetting("-Ydrop-comments", "Drop comments when scanning source files.")
150
-
valYcookComments:Setting[Boolean] =BooleanSetting("-Ycook-comments", "Cook the comments (type check `@usecase`, etc.).")
150
+
valYcookComments:Setting[Boolean] =BooleanSetting("-Ycook-comments", "Cook the comments (type check `@usecase`, etc.)")
151
151
valYforceSbtPhases:Setting[Boolean] =BooleanSetting("-Yforce-sbt-phases", "Run the phases used by sbt for incremental compilation (ExtractDependencies and ExtractAPI) even if the compiler is ran outside of sbt, for debugging.")
152
152
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.")
153
153
valYcheckAllPatmat:Setting[Boolean] =BooleanSetting("-Ycheck-all-patmat", "Check exhaustivity and redundancy of all pattern matching (used for testing the algorithm).")
154
-
valYretainTrees:Setting[Boolean] =BooleanSetting("-Yretain-trees", "Retain trees for top-level classes, accessible from ClassSymbol#tree.")
154
+
valYretainTrees:Setting[Boolean] =BooleanSetting("-Yretain-trees", "Retain trees for top-level classes, accessible from ClassSymbol#tree")
155
155
valYsemanticdb:Setting[Boolean] =BooleanSetting("-Ysemanticdb", "Store information in SemanticDB.")
156
156
valYshowTreeIds:Setting[Boolean] =BooleanSetting("-Yshow-tree-ids", "Uniquely tag all tree nodes in debugging output.")
157
157
@@ -160,7 +160,7 @@ class ScalaSettings extends Settings.SettingGroup {
valYprofileExternalTool:Setting[List[String]] =PhasesSetting("-Yprofile-external-tool", "Enable profiling for a phase using an external tool hook. Generally only useful for a single phase.", "typer")
valYprofileRunGcBetweenPhases:Setting[List[String]] =PhasesSetting("-Yprofile-run-gc", "Run a GC between phases - this allows heap size to be accurate at the expense of more time. Specify a list of phases, or *.", "_")
163
+
valYprofileRunGcBetweenPhases:Setting[List[String]] =PhasesSetting("-Yprofile-run-gc", "Run a GC between phases - this allows heap size to be accurate at the expense of more time. Specify a list of phases, or *", "_")
0 commit comments