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
// it's a discarded method (synthetic case class method or synthetic java record constructor), drop it
2554
-
assert(canBeInvalidated(sym))
2555
-
sym.owner.info.decls.openForMutations.unlink(sym)
2556
-
returnEmptyTree
2556
+
deftypedDefDef(ddef: untpd.DefDef, sym: Symbol)(usingContext):Tree=if!sym.info.exists then bailDefDef(sym) else {
2557
2557
2558
2558
// TODO: - Remove this when `scala.language.experimental.erasedDefinitions` is no longer experimental.
2559
2559
// - Modify signature to `erased def erasedValue[T]: T`
@@ -2576,7 +2576,8 @@ class Typer(@constructorOnly nestingLevel: Int = 0) extends Namer
2576
2576
case untpd.TypeDefs(tparams) => tparams
2577
2577
}
2578
2578
2579
-
// Register GADT constraint for class type parameters from outer to inner class definition. (Useful when nested classes exist.) But do not cross a function definition.
2579
+
// Register GADT constraint for class type parameters from outer to inner class definition.
2580
+
// (Useful when nested classes exist.) But do not cross a function definition.
0 commit comments