@@ -71,7 +71,7 @@ object Types {
71
71
* +- GroundType -+- AndType
72
72
* +- OrType
73
73
* +- MethodOrPoly ---+-- PolyType
74
- * | +-- MethodType ---+- ImplicitMethodType
74
+ * | +-- MethodType ---+- OldImplicitMethodType
75
75
* | +- GivenMethodType
76
76
* | +- ErasedMethodType
77
77
* | +- JavaMethodType
@@ -3184,12 +3184,12 @@ object Types {
3184
3184
3185
3185
final override def isJavaMethod : Boolean = companion eq JavaMethodType
3186
3186
final override def isImplicitMethod : Boolean =
3187
- companion.eq(ImplicitMethodType ) ||
3188
- companion.eq(ErasedImplicitMethodType ) ||
3187
+ companion.eq(OldImplicitMethodType ) ||
3188
+ companion.eq(ErasedOldImplicitMethodType ) ||
3189
3189
isGivenMethod
3190
3190
final override def isErasedMethod : Boolean =
3191
3191
companion.eq(ErasedMethodType ) ||
3192
- companion.eq(ErasedImplicitMethodType ) ||
3192
+ companion.eq(ErasedOldImplicitMethodType ) ||
3193
3193
companion.eq(ErasedGivenMethodType )
3194
3194
final override def isGivenMethod : Boolean =
3195
3195
companion.eq(GivenMethodType ) ||
@@ -3296,7 +3296,7 @@ object Types {
3296
3296
else if (isGiven)
3297
3297
if (isErased) ErasedGivenMethodType else GivenMethodType
3298
3298
else if (isOldImplicit)
3299
- if (isErased) ErasedImplicitMethodType else ImplicitMethodType
3299
+ if (isErased) ErasedOldImplicitMethodType else OldImplicitMethodType
3300
3300
else
3301
3301
if (isErased) ErasedMethodType else MethodType
3302
3302
}
@@ -3305,8 +3305,8 @@ object Types {
3305
3305
object ErasedMethodType extends MethodTypeCompanion (" ErasedMethodType" )
3306
3306
object GivenMethodType extends MethodTypeCompanion (" GivenMethodType" )
3307
3307
object ErasedGivenMethodType extends MethodTypeCompanion (" ErasedGivenMethodType" )
3308
- object ImplicitMethodType extends MethodTypeCompanion (" ImplicitMethodType" )
3309
- object ErasedImplicitMethodType extends MethodTypeCompanion (" ErasedImplicitMethodType" )
3308
+ object OldImplicitMethodType extends MethodTypeCompanion (" ImplicitMethodType" )
3309
+ object ErasedOldImplicitMethodType extends MethodTypeCompanion (" ErasedImplicitMethodType" )
3310
3310
3311
3311
/** A ternary extractor for MethodType */
3312
3312
object MethodTpe {
0 commit comments