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 0b585c6 commit ffe0131Copy full SHA for ffe0131
src/dotty/tools/dotc/core/Types.scala
@@ -427,7 +427,7 @@ object Types {
427
Set()
428
}
429
430
- private def memberDenots(keepOnly: NameFilter, f: (Name, mutable.Buffer[SingleDenotation]) => Unit)(implicit ctx: Context): Seq[SingleDenotation] = {
+ def memberDenots(keepOnly: NameFilter, f: (Name, mutable.Buffer[SingleDenotation]) => Unit)(implicit ctx: Context): Seq[SingleDenotation] = {
431
val buf = mutable.ArrayBuffer[SingleDenotation]()
432
for (name <- memberNames(keepOnly)) f(name, buf)
433
buf
0 commit comments