aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-15 10:57:33 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-18 16:06:33 +0100
commit9c7cf4ee6196e0ec9ac7c7701de417bd9cb31c43 (patch)
tree3b5a3cc8c6046e29e2b0a0c64db60922b692efc9 /src/dotty/tools/dotc/core/Symbols.scala
parent164ecb70593728ce218e04f4e316a32ae346e4b7 (diff)
downloaddotty-9c7cf4ee6196e0ec9ac7c7701de417bd9cb31c43.tar.gz
dotty-9c7cf4ee6196e0ec9ac7c7701de417bd9cb31c43.tar.bz2
dotty-9c7cf4ee6196e0ec9ac7c7701de417bd9cb31c43.zip
Renamings TreeTransformer -> TreeMap, TreeMapper -> TreeTypeMap
This makes naming uniform between trees and types, and also avoids the clash with transform.TreeTransformer. The idea is that transformers are parts of phases, and have logic that is phase-specific. In particular, a context is passed around when transforming a tree. Maps are simpler, they only have a T -> T apply method.
Diffstat (limited to 'src/dotty/tools/dotc/core/Symbols.scala')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index aa0cbb5a9..3fc8a4f2c 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -19,7 +19,7 @@ import Annotations._
import util.Positions._
import StdNames._
import NameOps._
-import ast.tpd.{TreeMapper, Tree}
+import ast.tpd.{TreeTypeMap, Tree}
import Denotations.{ Denotation, SingleDenotation, MultiDenotation }
import collection.mutable
import io.AbstractFile
@@ -278,7 +278,7 @@ trait Symbols { this: Context =>
else {
val copies: List[Symbol] = for (original <- originals) yield
newNakedSymbol[original.ThisName](original.coord)
- val treeMap = new TreeMapper(typeMap, ownerMap)
+ val treeMap = new TreeTypeMap(typeMap, ownerMap)
.withSubstitution(originals, copies)
(originals, copies).zipped foreach {(original, copy) =>
val odenot = original.denot