We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e42acaa commit 2a0ab6fCopy full SHA for 2a0ab6f
compiler/src/dotty/tools/dotc/sbt/ExtractAPI.scala
@@ -328,7 +328,7 @@ private class ExtractAPICollector(implicit val ctx: Context) extends ThunkHolder
328
} else if (sym.is(Mutable, butNot = Accessor)) {
329
api.Var.of(sym.name.toString, apiAccess(sym), apiModifiers(sym),
330
apiAnnotations(sym).toArray, apiType(sym.info))
331
- } else if (sym.isStable) {
+ } else if (sym.isStable && !sym.isRealMethod) {
332
api.Val.of(sym.name.toString, apiAccess(sym), apiModifiers(sym),
333
334
} else {
0 commit comments