aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Denotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-07-01 14:47:06 +0200
committerMartin Odersky <odersky@gmail.com>2014-07-17 11:01:59 +0200
commitf0249f2bdd8aeb349309dc1ea6ed248987c800f9 (patch)
tree43d680e3fbcbd2e89d03dc820f679c7e8e873d0f /src/dotty/tools/dotc/core/Denotations.scala
parent3ab2784948d084557e88cd7eb5c55a29613742d0 (diff)
downloaddotty-f0249f2bdd8aeb349309dc1ea6ed248987c800f9.tar.gz
dotty-f0249f2bdd8aeb349309dc1ea6ed248987c800f9.tar.bz2
dotty-f0249f2bdd8aeb349309dc1ea6ed248987c800f9.zip
Rename SignedType -> MethodicType
... for the common supertype of MethodType, PolyType, and ExprType. Signed was confusing.
Diffstat (limited to 'src/dotty/tools/dotc/core/Denotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/Denotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Denotations.scala b/src/dotty/tools/dotc/core/Denotations.scala
index 120f8e0f8..bdc67aa08 100644
--- a/src/dotty/tools/dotc/core/Denotations.scala
+++ b/src/dotty/tools/dotc/core/Denotations.scala
@@ -375,7 +375,7 @@ object Denotations {
final def signature(implicit ctx: Context): Signature = {
if (isType) Signature.NotAMethod // don't force info if this is a type SymDenotation
else info match {
- case info: SignedType =>
+ case info: MethodicType =>
try info.signature
catch { // !!! DEBUG
case ex: Throwable =>