Closed samuelchassot closed 3 months ago
An interesting point: https://github.com/scala/scala3/commit/125321e157af0e12cfddeeea526a5e87166fcd65
TL;DR dotty.tools.dotc.transform.SymUtils
does not exist anymore, it is now an extension of Symbol
directly
Also the init
method of StandardPlugin
(for compiler plugin) has been deprecated: https://github.com/scala/scala3/issues/20185
It has been replaced by initialize
that takes a context
as parameter to be able to report errors.
WIP but I want to see the result of CI
Tests are passing locally.
A lot of the changes have been performed using the option
"-source:3.4-migration", "-rewrite"
of the compiler.