summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-03-05 07:42:49 -0800
committerPaul Phillips <paulp@improving.org>2013-03-05 07:42:49 -0800
commit2dd1a2b8f0e9c46bb600720a9b3fc20f275623a5 (patch)
treea38e8912d4e82e937054c7701f32c114c20cdfc9 /src
parent1d4cbc0cbe4f4df819136bafc84b65d5e3c925ea (diff)
parent3b071358a99ea3f90fb08a5a6b0b36c608b06931 (diff)
downloadscala-2dd1a2b8f0e9c46bb600720a9b3fc20f275623a5.tar.gz
scala-2dd1a2b8f0e9c46bb600720a9b3fc20f275623a5.tar.bz2
scala-2dd1a2b8f0e9c46bb600720a9b3fc20f275623a5.zip
Merge pull request #2187 from JamesIry/master_SI-6816
SI-6816 Deprecate -Yeta-expand-keeps-star
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/settings/ScalaSettings.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala b/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
index a5496f829d..2c9c20666d 100644
--- a/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
+++ b/src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
@@ -167,7 +167,8 @@ trait ScalaSettings extends AbsScalaSettings
val Yreploutdir = StringSetting ("-Yrepl-outdir", "path", "Write repl-generated classfiles to given output directory (use \"\" to generate a temporary dir)" , "")
val Ynotnull = BooleanSetting ("-Ynotnull", "Enable (experimental and incomplete) scala.NotNull.")
val YmethodInfer = BooleanSetting ("-Yinfer-argument-types", "Infer types for arguments of overriden methods.")
- val etaExpandKeepsStar = BooleanSetting ("-Yeta-expand-keeps-star", "Eta-expand varargs methods to T* rather than Seq[T]. This is a temporary option to ease transition.")
+ val etaExpandKeepsStar = BooleanSetting ("-Yeta-expand-keeps-star", "Eta-expand varargs methods to T* rather than Seq[T]. This is a temporary option to ease transition.").
+ withDeprecationMessage("This flag is scheduled for removal in 2.12. If you have a case where you need this flag then please report a bug.")
val Yinvalidate = StringSetting ("-Yinvalidate", "classpath-entry", "Invalidate classpath entry before run", "")
val noSelfCheck = BooleanSetting ("-Yno-self-type-checks", "Suppress check for self-type conformance among inherited members.")
val YvirtClasses = false // too embryonic to even expose as a -Y //BooleanSetting ("-Yvirtual-classes", "Support virtual classes")