summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2007-07-17 15:58:39 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2007-07-17 15:58:39 +0000
commit4b121fc9bb47fa0cdd6d214445fcabe8b6583526 (patch)
tree54efda9f0edf59e778e685e25ae9a43673b2bac3 /src
parentc739e595a326a9288179b270426991ee6c8431cf (diff)
downloadscala-4b121fc9bb47fa0cdd6d214445fcabe8b6583526.tar.gz
scala-4b121fc9bb47fa0cdd6d214445fcabe8b6583526.tar.bz2
scala-4b121fc9bb47fa0cdd6d214445fcabe8b6583526.zip
Moved “debug” command-line option from -X to -Y.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Settings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Settings.scala b/src/compiler/scala/tools/nsc/Settings.scala
index 4f0215ac7d..904eef29dd 100644
--- a/src/compiler/scala/tools/nsc/Settings.scala
+++ b/src/compiler/scala/tools/nsc/Settings.scala
@@ -94,7 +94,6 @@ class Settings(error: String => Unit) {
val assemname = StringSetting ("-Xassem", "file", "Name of the output assembly (only relevant with -target:msil)", "").dependsOn(target, "msil")
val assemrefs = StringSetting ("-Xassem-path", "path", "List of assemblies referenced by the program (only relevant with -target:msil)", ".").dependsOn(target, "msil")
val Xchecknull = BooleanSetting ("-Xcheck-null", "Emit warning on selection of nullable reference")
- val debug = BooleanSetting ("-Xdebug", "Output debugging messages").hideToIDE
val noassertions = BooleanSetting ("-Xdisable-assertions", "Generate no assertions and assumptions")
val Xexperimental = BooleanSetting ("-Xexperimental", "Enable experimental extensions")
val Xnojline = new BooleanSetting("-Xnojline", "Do not use JLine for editing").hideToIDE
@@ -122,6 +121,7 @@ class Settings(error: String => Unit) {
val check = PhasesSetting ("-Ycheck", "Check the tree at start of")
val Xcloselim = BooleanSetting ("-Yclosure-elim", "Perform closure elimination")
val Xcodebase = StringSetting ("-Ycodebase", "codebase", "Specify the URL containing the Scala libraries", "")
+ val debug = BooleanSetting ("-Ydebug", "Output debugging messages").hideToIDE
val Xdce = BooleanSetting ("-Ydead-code", "Perform dead code elimination")
val Xdetach = BooleanSetting ("-Ydetach", "Perform detaching of remote closures")
val doc = BooleanSetting ("-Ydoc", "Generate documentation").hideToIDE