From 4b121fc9bb47fa0cdd6d214445fcabe8b6583526 Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Tue, 17 Jul 2007 15:58:39 +0000 Subject: Moved “debug” command-line option from -X to -Y. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/compiler/scala/tools/nsc/Settings.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3