Skip to content

Commit d32ce8a

Browse files
authored
Stabilize quotes Flags.AbsOverride (#18482)
2 parents 5045b8f + 5d4078b commit d32ce8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library/src/scala/quoted/Quotes.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4398,9 +4398,9 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
43984398
/** Is this an abstract override method?
43994399
*
44004400
* This corresponds to a definition declared as "abstract override def" in the source.
4401-
* See https://stackoverflow.com/questions/23645172/why-is-abstract-override-required-not-override-alone-in-subtrait for examples.
4401+
* See https://stackoverflow.com/questions/23645172/why-is-abstract-override-required-not-override-alone-in-subtrait for examples.
44024402
*/
4403-
@experimental def AbsOverride: Flags
4403+
def AbsOverride: Flags
44044404

44054405
/** Is this generated by Scala compiler.
44064406
* Corresponds to ACC_SYNTHETIC in the JVM.

project/MiMaFilters.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import com.typesafe.tools.mima.core._
44
object MiMaFilters {
55
val Library: Seq[ProblemFilter] = Seq(
66
// New API in 3.4.X
7+
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#FlagsModule.AbsOverride"),
78
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule.ValOrDefDefTypeTest"),
89
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule.ValOrDefDefMethods"),
910
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#defnModule.FunctionClass"),

tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ val experimentalDefinitionInLibrary = Set(
6868
"scala.annotation.init$.region",
6969

7070
//// New APIs: Quotes
71-
"scala.quoted.Quotes.reflectModule.FlagsModule.AbsOverride",
7271
// Can be stabilized in 3.4.0 (unsure) or later
7372
"scala.quoted.Quotes.reflectModule.CompilationInfoModule.XmacroSettings",
7473
"scala.quoted.Quotes.reflectModule.FlagsModule.JavaAnnotation",

0 commit comments

Comments
 (0)