aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2017-04-04 11:51:30 +0200
committerGitHub <noreply@github.com>2017-04-04 11:51:30 +0200
commit176f40a6daccbd5365988e66d84e44cba818e64a (patch)
treec0d3c8ade56d92f7568d3a7afe0a7627eac9531b
parent8495e80ab2656fabfd578807d5ddd73bc498a80d (diff)
downloaddotty-176f40a6daccbd5365988e66d84e44cba818e64a.tar.gz
dotty-176f40a6daccbd5365988e66d84e44cba818e64a.tar.bz2
dotty-176f40a6daccbd5365988e66d84e44cba818e64a.zip
Change -XemitTasty to -YemitTasty
-rw-r--r--compiler/src/dotty/tools/dotc/config/ScalaSettings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
index 9f3f4f3fc..6c54f10e2 100644
--- a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+++ b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
@@ -44,7 +44,6 @@ class ScalaSettings extends Settings.SettingGroup {
/** -X "Advanced" settings
*/
val Xhelp = BooleanSetting("-X", "Print a synopsis of advanced options.")
- val emitTasty = BooleanSetting("-XemitTasty", "Generate tasty in separate *.tasty file.")
val noForwarders = BooleanSetting("-Xno-forwarders", "Do not generate static forwarders in mirror classes.")
val XminImplicitSearchDepth = IntSetting("-Xmin-implicit-search-depth", "Set number of levels of implicit searches undertaken before checking for divergence.", 5)
val xmaxInlines = IntSetting("-Xmax-inlines", "Maximal number of successive inlines", 32)
@@ -71,6 +70,7 @@ class ScalaSettings extends Settings.SettingGroup {
val debugOwners = BooleanSetting("-Ydebug-owners", "Print all owners of definitions (requires -Yprint-syms)")
val termConflict = ChoiceSetting("-Yresolve-term-conflict", "strategy", "Resolve term conflicts", List("package", "object", "error"), "error")
val log = PhasesSetting("-Ylog", "Log operations during")
+ val emitTasty = BooleanSetting("-YemitTasty", "Generate tasty in separate *.tasty file.")
val Ylogcp = BooleanSetting("-Ylog-classpath", "Output information about what classpath is being applied.")
val YnoImports = BooleanSetting("-Yno-imports", "Compile without importing scala.*, java.lang.*, or Predef.")
val YnoPredef = BooleanSetting("-Yno-predef", "Compile without importing Predef.")