@@ -87,7 +87,6 @@ class ScalaSettings extends Settings.SettingGroup {
87
87
val YdebugFlags = BooleanSetting (" -Ydebug-flags" , " Print all flags of definitions" )
88
88
val YdebugMissingRefs = BooleanSetting (" -Ydebug-missing-refs" , " Print a stacktrace when a required symbol is missing" )
89
89
val YdebugNames = BooleanSetting (" -Ydebug-names" , " Show internal representation of names" )
90
- val YdebugOwners = BooleanSetting (" -Ydebug-owners" , " Print all owners of definitions (requires -Yprint-syms)" )
91
90
val YtermConflict = ChoiceSetting (" -Yresolve-term-conflict" , " strategy" , " Resolve term conflicts" , List (" package" , " object" , " error" ), " error" )
92
91
val Ylog = PhasesSetting (" -Ylog" , " Log operations during" )
93
92
val YemitTasty = BooleanSetting (" -Yemit-tasty" , " Generate tasty in separate *.tasty file." )
@@ -113,6 +112,7 @@ class ScalaSettings extends Settings.SettingGroup {
113
112
val YplainPrinter = BooleanSetting (" -Yplain-printer" , " Pretty-print using a plain printer." )
114
113
val YprintSyms = BooleanSetting (" -Yprint-syms" , " when printing trees print info in symbols instead of corresponding info in trees." )
115
114
val YprintDebug = BooleanSetting (" -Yprint-debug" , " when printing trees, print some extra information useful for debugging." )
115
+ val YprintDebugOwners = BooleanSetting (" -Yprint-debug-owners" , " when printing trees, print owners of definitions." )
116
116
val YshowPrintErrors = BooleanSetting (" -Yshow-print-errors" , " don't suppress exceptions thrown during tree printing." )
117
117
val YtestPickler = BooleanSetting (" -Ytest-pickler" , " self-test for pickling functionality; should be used with -Ystop-after:pickler" )
118
118
val YcheckReentrant = BooleanSetting (" -Ycheck-reentrant" , " check that compiled program does not contain vars that can be accessed from a global root." )
0 commit comments