summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Settings.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-01-27 13:15:16 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-01-27 13:15:16 +0000
commitf375f8ac3ef86ba13bad9346bd24ce08e86e2de1 (patch)
treebff519d5e7adb30fe26f498d1862ae1240a494b4 /src/compiler/scala/tools/nsc/Settings.scala
parentc01d2647666af410bc190b350617676344995c0b (diff)
downloadscala-f375f8ac3ef86ba13bad9346bd24ce08e86e2de1.tar.gz
scala-f375f8ac3ef86ba13bad9346bd24ce08e86e2de1.tar.bz2
scala-f375f8ac3ef86ba13bad9346bd24ce08e86e2de1.zip
Forgot to commit the change. No review.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Settings.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Settings.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/Settings.scala b/src/compiler/scala/tools/nsc/Settings.scala
index 4242d0df47..6cf232b368 100644
--- a/src/compiler/scala/tools/nsc/Settings.scala
+++ b/src/compiler/scala/tools/nsc/Settings.scala
@@ -921,6 +921,8 @@ trait ScalacSettings {
val Yidedebug = BooleanSetting ("-Yide-debug", "Generate, validate and output trees using the interactive compiler.")
val Ybuilderdebug = ChoiceSetting ("-Ybuilder-debug", "Compile using the specified build manager", List("none", "refined", "simple"), "none") .
withHelpSyntax("-Ybuilder-debug:<method>")
+ val Ybuildmanagerdebug =
+ BooleanSetting ("-Ybuild-manager-debug", "Generate debug information for the Refined Build Manager compiler.")
val Ytyperdebug = BooleanSetting ("-Ytyper-debug", "Trace all type assignements")
val Ypmatdebug = BooleanSetting ("-Ypmat-debug", "Trace all pattern matcher activity.")
val Ytailrec = BooleanSetting ("-Ytailrecommend", "Alert methods which would be tail-recursive if private or final.")