You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correct Java signature for value classes appearing in type arguments (#20463)
As suggested in #10846 the fix to this issue should be to port
scala/scala#8127 to scala3
I started by adding the same tests as in the scala2 PR and then tried to
find the place where to do the fix by adding some log traces.
Unfortunately I am still pretty lost because this is my first time
looking at the compiler code.
Any tips where this needs to be fixed are very welcome. Meanwhile a few
questions:
* The scala2 fix was done in
`src/compiler/scala/tools/nsc/transform/Erasure.scala`, should I do the
fix for scala3 in
`compiler/src/dotty/tools/dotc/transform/Erasure.scala` as well?
* I think I need to do the fix around `ErasedValueType`, either when it
is created (in `TypeErasure#eraseDerivedValueClass`) or when it is used
(in `Erasure#unbox`).
Please also send me any pointers besides
https://dotty.epfl.ch/docs/contributing/index.html regarding compiler
contributions
0 commit comments