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 allows to create Contextual and Implicit MethodTypes.
MethodTypeKind abstracts away the MethodTypeCompanion
implementation into a simple enum style choice for a newly added
MethodType apply. The MethodType unapply is kept as it was for source
compatibility, instead users are encouraged to use isImplicit and
isContextual methods.
Copy file name to clipboardExpand all lines: project/MiMaFilters.scala
+6-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,12 @@ object MiMaFilters {
50
50
// Breaking changes since last reference version
51
51
Build.mimaPreviousDottyVersion ->// Seq.empty, // We should never break backwards compatibility
52
52
Seq(
53
-
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#SymbolMethods.isSuperAccessor"), // This change is acceptable. See comment in `Breaking changes since last LTS`.
53
+
// `ReversedMissingMethodProblem`s are acceptable. See comment in `Breaking changes since last LTS`.
0 commit comments