File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
tasty/src/dotty/tools/tasty Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ object MiMaFilters {
1313 ProblemFilters .exclude[MissingFieldProblem ](" scala.runtime.stdLibPatches.language#experimental.quotedPatternsWithPolymorphicFunctions" ),
1414 ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$experimental$quotedPatternsWithPolymorphicFunctions$" ),
1515 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.runtime.Patterns.higherOrderHoleWithTypes" ),
16+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.freshCapability" ),
17+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.readOnlyCapability" ),
1618 ),
1719
1820 // Additions since last LTS
Original file line number Diff line number Diff line change @@ -229,7 +229,6 @@ Standard-Section: "ASTs" TopLevelStat*
229229 OPEN -- an open class
230230 INVISIBLE -- invisible during typechecking
231231 TRACKED -- a tracked class parameter / a dependent class
232- MUT -- an update method (cc only)
233232 Annotation
234233
235234 Variance = STABLE -- invariant
@@ -512,7 +511,6 @@ object TastyFormat {
512511 final val EMPTYCLAUSE = 45
513512 final val SPLITCLAUSE = 46
514513 final val TRACKED = 47
515- final val MUT = 48
516514
517515 // Tree Cat. 2: tag Nat
518516 final val firstNatTreeTag = SHAREDterm
@@ -705,8 +703,7 @@ object TastyFormat {
705703 | ANNOTATION
706704 | PRIVATEqualified
707705 | PROTECTEDqualified
708- | TRACKED
709- | MUT => true
706+ | TRACKED => true
710707 case _ => false
711708 }
712709
You can’t perform that action at this time.
0 commit comments