aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/config/CompilerCommand.scala
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/src/dotty/tools/dotc/config/CompilerCommand.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/config/CompilerCommand.scala14
1 files changed, 5 insertions, 9 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/CompilerCommand.scala b/compiler/src/dotty/tools/dotc/config/CompilerCommand.scala
index 19ede3cec..6e0c60555 100644
--- a/compiler/src/dotty/tools/dotc/config/CompilerCommand.scala
+++ b/compiler/src/dotty/tools/dotc/config/CompilerCommand.scala
@@ -93,19 +93,15 @@ object CompilerCommand extends DotClass {
def shouldStopWithInfo = {
import settings._
- Set(help, Xhelp, Yhelp, showPlugins, showPhases) exists (_.value)
+ Set(help, Xhelp, Yhelp) exists (_.value)
}
def infoMessage: String = {
import settings._
- if (help.value) usageMessage
- else if (Xhelp.value) xusageMessage
- else if (Yhelp.value) yusageMessage
-// else if (showPlugins.value) global.pluginDescriptions
-// else if (showPhases.value) global.phaseDescriptions + (
-// if (debug.value) "\n" + global.phaseFlagDescriptions else ""
-// )
- else ""
+ if (help.value) usageMessage
+ else if (Xhelp.value) xusageMessage
+ else if (Yhelp.value) yusageMessage
+ else ""
}
if (summary.errors.nonEmpty) {