File tree 2 files changed +4
-3
lines changed
compiler/src/dotty/tools/dotc/ast
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -466,6 +466,8 @@ trait UntypedTreeInfo extends TreeInfo[Untyped] { self: Trees.Instance[Untyped]
466
466
*/
467
467
private def defKind (tree : Tree )(using Context ): FlagSet = unsplice(tree) match {
468
468
case EmptyTree | _ : Import => NoInitsInterface
469
+ case tree : TypeDef if ctx.settings.YcompileScala2Library .value =>
470
+ if (tree.isClassDef) EmptyFlags else NoInitsInterface
469
471
case tree : TypeDef => if (tree.isClassDef) NoInits else NoInitsInterface
470
472
case tree : DefDef =>
471
473
if tree.unforcedRhs == EmptyTree
@@ -477,6 +479,8 @@ trait UntypedTreeInfo extends TreeInfo[Untyped] { self: Trees.Instance[Untyped]
477
479
NoInitsInterface
478
480
else if tree.mods.is(Given ) && tree.paramss.isEmpty then
479
481
EmptyFlags // might become a lazy val: TODO: check whether we need to suppress NoInits once we have new lazy val impl
482
+ else if ctx.settings.YcompileScala2Library .value then
483
+ EmptyFlags
480
484
else
481
485
NoInits
482
486
case tree : ValDef => if (tree.unforcedRhs == EmptyTree ) NoInitsInterface else EmptyFlags
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ object Scala2LibraryBootstrappedMiMaFilters {
15
15
ProblemFilters .exclude[FinalClassProblem ](" scala.language$experimental$" ),
16
16
ProblemFilters .exclude[FinalClassProblem ](" scala.languageFeature$*$" ),
17
17
18
- // trait $init$
19
- ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.*.$init$" ),
20
-
21
18
// Value class extension methods
22
19
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.*$extension" ),
23
20
You can’t perform that action at this time.
0 commit comments