File tree 2 files changed +3
-4
lines changed
tasty/src/dotty/tools/tasty 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ object MiMaFilters {
13
13
ProblemFilters .exclude[MissingFieldProblem ](" scala.runtime.stdLibPatches.language#experimental.quotedPatternsWithPolymorphicFunctions" ),
14
14
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$experimental$quotedPatternsWithPolymorphicFunctions$" ),
15
15
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.runtime.Patterns.higherOrderHoleWithTypes" ),
16
+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.freshCapability" ),
17
+ ProblemFilters .exclude[MissingClassProblem ](" scala.annotation.internal.readOnlyCapability" ),
16
18
),
17
19
18
20
// Additions since last LTS
Original file line number Diff line number Diff line change @@ -229,7 +229,6 @@ Standard-Section: "ASTs" TopLevelStat*
229
229
OPEN -- an open class
230
230
INVISIBLE -- invisible during typechecking
231
231
TRACKED -- a tracked class parameter / a dependent class
232
- MUT -- an update method (cc only)
233
232
Annotation
234
233
235
234
Variance = STABLE -- invariant
@@ -512,7 +511,6 @@ object TastyFormat {
512
511
final val EMPTYCLAUSE = 45
513
512
final val SPLITCLAUSE = 46
514
513
final val TRACKED = 47
515
- final val MUT = 48
516
514
517
515
// Tree Cat. 2: tag Nat
518
516
final val firstNatTreeTag = SHAREDterm
@@ -705,8 +703,7 @@ object TastyFormat {
705
703
| ANNOTATION
706
704
| PRIVATEqualified
707
705
| PROTECTEDqualified
708
- | TRACKED
709
- | MUT => true
706
+ | TRACKED => true
710
707
case _ => false
711
708
}
712
709
You can’t perform that action at this time.
0 commit comments