@@ -71,7 +71,7 @@ object Types {
7171 * +- GroundType -+- AndType
7272 * +- OrType
7373 * +- MethodOrPoly ---+-- PolyType
74- * | +-- MethodType ---+- ImplicitMethodType
74+ * | +-- MethodType ---+- OldImplicitMethodType
7575 * | +- GivenMethodType
7676 * | +- ErasedMethodType
7777 * | +- JavaMethodType
@@ -3184,12 +3184,12 @@ object Types {
31843184
31853185 final override def isJavaMethod : Boolean = companion eq JavaMethodType
31863186 final override def isImplicitMethod : Boolean =
3187- companion.eq(ImplicitMethodType ) ||
3188- companion.eq(ErasedImplicitMethodType ) ||
3187+ companion.eq(OldImplicitMethodType ) ||
3188+ companion.eq(ErasedOldImplicitMethodType ) ||
31893189 isGivenMethod
31903190 final override def isErasedMethod : Boolean =
31913191 companion.eq(ErasedMethodType ) ||
3192- companion.eq(ErasedImplicitMethodType ) ||
3192+ companion.eq(ErasedOldImplicitMethodType ) ||
31933193 companion.eq(ErasedGivenMethodType )
31943194 final override def isGivenMethod : Boolean =
31953195 companion.eq(GivenMethodType ) ||
@@ -3296,7 +3296,7 @@ object Types {
32963296 else if (isGiven)
32973297 if (isErased) ErasedGivenMethodType else GivenMethodType
32983298 else if (isOldImplicit)
3299- if (isErased) ErasedImplicitMethodType else ImplicitMethodType
3299+ if (isErased) ErasedOldImplicitMethodType else OldImplicitMethodType
33003300 else
33013301 if (isErased) ErasedMethodType else MethodType
33023302 }
@@ -3305,8 +3305,8 @@ object Types {
33053305 object ErasedMethodType extends MethodTypeCompanion (" ErasedMethodType" )
33063306 object GivenMethodType extends MethodTypeCompanion (" GivenMethodType" )
33073307 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" )
33103310
33113311 /** A ternary extractor for MethodType */
33123312 object MethodTpe {
0 commit comments