aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-01-27 09:12:40 +0100
committerMartin Odersky <odersky@gmail.com>2013-01-27 09:12:40 +0100
commitc215dbb2870a748ad7d3f2285c561cf452848c92 (patch)
treefb55a5ae2ec2a4efa09b47145685a89551c485bd /src/dotty/tools/dotc/core/SymDenotations.scala
parent72b91d2049c56c26322ec1dcf6890c436539faf2 (diff)
downloaddotty-c215dbb2870a748ad7d3f2285c561cf452848c92.tar.gz
dotty-c215dbb2870a748ad7d3f2285c561cf452848c92.tar.bz2
dotty-c215dbb2870a748ad7d3f2285c561cf452848c92.zip
More eliminations of AppliedType
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 9df52470b..a9da9806e 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -356,7 +356,7 @@ object SymDenotations {
def typeParams: List[TypeSymbol]
- def parents: List[Type]
+ def parents: List[TypeRef]
def decls: Scope
@@ -594,7 +594,7 @@ object SymDenotations {
val name: Name,
initFlags: FlagSet,
val typeParams: List[TypeSymbol],
- val parents: List[Type],
+ val parents: List[TypeRef],
val decls: Scope,
assocFile: AbstractFile = null
)(implicit ctx: Context) extends ClassDenotation(initFlags, assocFile)
@@ -608,7 +608,7 @@ object SymDenotations {
)(implicit ctx: Context) extends ClassDenotation(initFlags, assocFile) with LazyCompletion {
protected var _typeParams: List[TypeSymbol] = null
- protected var _parents: List[Type] = null
+ protected var _parents: List[TypeRef] = null
protected var _decls: Scope = null
final def typeParams: List[TypeSymbol] = {
@@ -616,7 +616,7 @@ object SymDenotations {
if (tparams != null) tparams else { tryLoad(); typeParams }
}
- final def parents: List[Type] = {
+ final def parents: List[TypeRef] = {
val ps = _parents
if (ps != null) ps else { tryComplete(); parents }
}