summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2011-10-21 16:05:26 +0000
committerMartin Odersky <odersky@gmail.com>2011-10-21 16:05:26 +0000
commit421605022dd5b075b080431cc2a8f72d06b302a4 (patch)
treeb206ce848c9b1444a5f1e08f7513edddfe01f8d4
parentdabe26bb1e636cd63fafdfbea758773a18b19a6c (diff)
downloadscala-421605022dd5b075b080431cc2a8f72d06b302a4.tar.gz
scala-421605022dd5b075b080431cc2a8f72d06b302a4.tar.bz2
scala-421605022dd5b075b080431cc2a8f72d06b302a4.zip
Isolated name change. No review.
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Namers.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Namers.scala b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
index 1b2b737074..fbca075166 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Namers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
@@ -1250,7 +1250,7 @@ trait Namers { self: Analyzer =>
annotate(sym)
if (sym.isModule) annotate(sym.moduleClass)
- def makeNamer = tree match {
+ def getSig = tree match {
case ClassDef(_, _, tparams, impl) =>
newNamer(context.makeNewScope(tree, sym)).classSig(tparams, impl)
@@ -1301,7 +1301,7 @@ trait Namers { self: Analyzer =>
}
val result =
- try makeNamer
+ try getSig
catch typeErrorHandler(tree.pos, ErrorType)
result match {