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.
final
1 parent 86868c3 commit 2577ccdCopy full SHA for 2577ccd
doc-tool/src/dotty/tools/dottydoc/model/internal.scala
@@ -86,13 +86,15 @@ object internal {
86
annotations: List[String],
87
name: String,
88
members: List[Entity],
89
- modifiers: List[String],
+ private val mods: List[String],
90
path: List[String],
91
superTypes: List[MaterializableLink] = Nil,
92
var comment: Option[Comment] = None,
93
var companionPath: List[String] = Nil,
94
var parent: Entity = NonEntity
95
- ) extends Object
+ ) extends Object {
96
+ def modifiers: List[String] = mods.filterNot(_ == "private")
97
+ }
98
99
final case class DefImpl(
100
symbol: Symbol,
0 commit comments