aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/UnPickler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-03-04 11:53:46 +0100
committerMartin Odersky <odersky@gmail.com>2013-03-04 11:53:46 +0100
commit5af6ff8286614998e58f0bc5ef2fe4135d993209 (patch)
tree05ad16fb264d918b23210ca9b34d8ee2a875c5bf /src/dotty/tools/dotc/core/pickling/UnPickler.scala
parenta462570e3a7c5188ae5e6e4e76a16522bee10f1c (diff)
downloaddotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.tar.gz
dotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.tar.bz2
dotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.zip
Renamed RefinedType#name, #info…
… to refinedName, refinedInfo. Also some other polishings in Types.
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/UnPickler.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/UnPickler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/UnPickler.scala b/src/dotty/tools/dotc/core/pickling/UnPickler.scala
index 55ed9b63d..dfb6be7d6 100644
--- a/src/dotty/tools/dotc/core/pickling/UnPickler.scala
+++ b/src/dotty/tools/dotc/core/pickling/UnPickler.scala
@@ -438,7 +438,7 @@ class UnPickler(bytes: Array[Byte], classRoot: ClassDenotation, moduleRoot: Clas
def elim(tp: Type): Type = tp match {
case tp @ RefinedType(parent, name) =>
val parent1 = elim(tp.parent)
- tp.info match {
+ tp.refinedInfo match {
case TypeAlias(info: TypeRefBySym) if boundSyms contains info.fixedSym =>
RefinedType(parent1, name, info.fixedSym.info)
case info: TypeRefBySym if boundSyms contains info.fixedSym =>