Skip to content

Commit a641aeb

Browse files
committed
chore: do not enter scala 2 extension methods and let dotty generate them
1 parent 81e057a commit a641aeb

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

compiler/src/dotty/tools/dotc/core/unpickleScala2/Scala2Unpickler.scala

+9-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,15 @@ class Scala2Unpickler(bytes: Array[Byte], classRoot: ClassDenotation, moduleClas
535535
true) &&
536536
// We discard the private val representing a case accessor. We only enter the case accessor def.
537537
// We do need to load these symbols to read properly unpickle the annotations on the symbol (see sbt-test/scala2-compat/i19421).
538-
!flags.isAllOf(CaseAccessor | PrivateLocal, butNot = Method)
538+
!flags.isAllOf(CaseAccessor | PrivateLocal, butNot = Method) &&
539+
// We don't enter Value Classes' extension methods from pickles, but we do
540+
// generate in the ExtensionMethods phase, at the same time as we do for Scala 3
541+
// Same trick is used by tasty-query (see
542+
//https://github.com/scalacenter/tasty-query/blob/fdefadcabb2f21d5c4b71f728b81c68f6fddcc0f/tasty-query/shared/src/main/scala/tastyquery/reader/pickles/PickleReader.scala#L261-L273
543+
//)
544+
// This trick is also useful when reading the Scala 2 Standard library from tasty, since
545+
// the extension methods will not be present, and it avoid having to distinguish between Scala2 pickles and Scala2 tasty (stdlib)
546+
!(owner.is(ModuleClass) && sym.name.endsWith("$extension"))
539547

540548
if (canEnter)
541549
owner.asClass.enter(sym, symScope(owner))

compiler/src/dotty/tools/dotc/transform/ExtensionMethods.scala

+4-6
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,10 @@ class ExtensionMethods extends MiniPhase with DenotTransformer with FullParamete
7474
sym.validFor = thisPhase.validFor
7575
}
7676

77-
// Create extension methods, except if the class comes from Scala 2
78-
// because it adds extension methods before pickling.
79-
if !valueClass.is(Scala2x, butNot = Scala2Tasty) then
80-
for (decl <- valueClass.classInfo.decls)
81-
if isMethodWithExtension(decl) then
82-
enterInModuleClass(createExtensionMethod(decl, moduleClassSym.symbol))
77+
// Create extension methods
78+
for (decl <- valueClass.classInfo.decls)
79+
if isMethodWithExtension(decl) then
80+
enterInModuleClass(createExtensionMethod(decl, moduleClassSym.symbol))
8381

8482
// Create synthetic methods to cast values between the underlying type
8583
// and the ErasedValueType. These methods are removed in ElimErasedValueType.

0 commit comments

Comments
 (0)