@@ -87,7 +87,6 @@ class ScalaSettings extends Settings.SettingGroup {
8787 val YdebugFlags = BooleanSetting (" -Ydebug-flags" , " Print all flags of definitions" )
8888 val YdebugMissingRefs = BooleanSetting (" -Ydebug-missing-refs" , " Print a stacktrace when a required symbol is missing" )
8989 val YdebugNames = BooleanSetting (" -Ydebug-names" , " Show internal representation of names" )
90- val YdebugOwners = BooleanSetting (" -Ydebug-owners" , " Print all owners of definitions (requires -Yprint-syms)" )
9190 val YtermConflict = ChoiceSetting (" -Yresolve-term-conflict" , " strategy" , " Resolve term conflicts" , List (" package" , " object" , " error" ), " error" )
9291 val Ylog = PhasesSetting (" -Ylog" , " Log operations during" )
9392 val YemitTasty = BooleanSetting (" -Yemit-tasty" , " Generate tasty in separate *.tasty file." )
@@ -113,6 +112,7 @@ class ScalaSettings extends Settings.SettingGroup {
113112 val YplainPrinter = BooleanSetting (" -Yplain-printer" , " Pretty-print using a plain printer." )
114113 val YprintSyms = BooleanSetting (" -Yprint-syms" , " when printing trees print info in symbols instead of corresponding info in trees." )
115114 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." )
116116 val YshowPrintErrors = BooleanSetting (" -Yshow-print-errors" , " don't suppress exceptions thrown during tree printing." )
117117 val YtestPickler = BooleanSetting (" -Ytest-pickler" , " self-test for pickling functionality; should be used with -Ystop-after:pickler" )
118118 val YcheckReentrant = BooleanSetting (" -Ycheck-reentrant" , " check that compiled program does not contain vars that can be accessed from a global root." )
0 commit comments