File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,13 @@ import com.typesafe.tools.mima.core._
3
3
4
4
object MiMaFilters {
5
5
val Library : Seq [ProblemFilter ] = Seq (
6
+
7
+ // Those are OK because user code is not allowed to inherit from Quotes:
8
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.asQuotes" ),
9
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#ClassDefModule.apply" ),
10
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolModule.newClass" ),
11
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.typeRef" ),
12
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.termRef" ),
13
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#TypeTreeModule.ref" ),
6
14
)
7
15
}
You can’t perform that action at this time.
0 commit comments