summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-09-10 23:25:40 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-09-11 00:19:05 +0200
commit028de5d78225d3eb4d41d87bdbe56b7631ef76d1 (patch)
treea6d847d01d41347c2af488d3b4f5564415a2ab2e /src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
parentc78fe024711925c40f9fc15221ea04a6f99a5691 (diff)
downloadscala-028de5d78225d3eb4d41d87bdbe56b7631ef76d1.tar.gz
scala-028de5d78225d3eb4d41d87bdbe56b7631ef76d1.tar.bz2
scala-028de5d78225d3eb4d41d87bdbe56b7631ef76d1.zip
Rescues @deprecated{Inheritance, Overriding}
While they ought to be generalized to aribirary modifier changes before being offered in the standard library, the opportunity to use them in 2.10 is too important to pass up. So for now, they're private[scala]. En route: - made the error messages more concise - fix positioning of inheritance error - improve test coverage
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/RefChecks.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/RefChecks.scala6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
index 919250c562..b9ff04c9df 100644
--- a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
@@ -512,10 +512,8 @@ abstract class RefChecks extends InfoTransform with reflect.internal.transform.R
def checkOverrideDeprecated() {
if (other.hasDeprecatedOverridingAnnotation) {
- val msg =
- member.toString + member.locationString + " overrides " + other.toString + other.locationString +
- ", but overriding this member is deprecated" +
- other.deprecatedOverridingMessage.map(": " + _).getOrElse(".")
+ val suffix = other.deprecatedOverridingMessage map (": " + _) getOrElse ""
+ val msg = s"overriding ${other.fullLocationString} is deprecated$suffix"
unit.deprecationWarning(member.pos, msg)
}
}