summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/States.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-27 16:00:53 +0300
committerEugene Burmako <xeno.by@gmail.com>2014-02-12 14:53:49 +0100
commit8217c06e4f2b8a6312caa257f9a629dc59979ab7 (patch)
treed08ca7e792cf6926bb4576927f7526a8329f8bfe /src/compiler/scala/reflect/reify/States.scala
parentc34b24a6c4b75a6215bdb8fd8ff94ce869430435 (diff)
downloadscala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.tar.gz
scala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.tar.bz2
scala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.zip
proceeds with the quest of removing `local` from names
Continuing in the direction set by the parent commit, this commit rephrases some more usages of `local` in names and comments in typer.
Diffstat (limited to 'src/compiler/scala/reflect/reify/States.scala')
-rw-r--r--src/compiler/scala/reflect/reify/States.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/reflect/reify/States.scala b/src/compiler/scala/reflect/reify/States.scala
index 29bfa19845..65f3f424e8 100644
--- a/src/compiler/scala/reflect/reify/States.scala
+++ b/src/compiler/scala/reflect/reify/States.scala
@@ -35,7 +35,7 @@ trait States {
if (!value && concrete) {
current match {
case tpe: Type => CannotReifyWeakType(s" having unresolved type parameter $tpe")
- case sym: Symbol => CannotReifyWeakType(s" referring to local ${sym.kindString} ${sym.fullName}")
+ case sym: Symbol => CannotReifyWeakType(s" referring to ${sym.kindString} ${sym.fullName} local to the reifee")
case _ => CannotReifyWeakType("")
}
}