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 cf508b6 commit f67089aCopy full SHA for f67089a
scaladoc/src/dotty/tools/scaladoc/tasty/ClassLikeSupport.scala
@@ -116,7 +116,7 @@ trait ClassLikeSupport:
116
classDef.symbol.declaredTypes.foreach {
117
case typeSymbol: Symbol =>
118
val typeDef = typeSymbol.tree.asInstanceOf[TypeDef]
119
- if typeDef.rhs.symbol.fullName.contains("java") then
+ if typeDef.rhs.symbol.flags.is(Flags.JavaDefined) then
120
val t = typeSymbol.tree.asInkuire(variableNames) // TODO [Inkuire] Hack until type aliases are supported
121
val tJava = typeDef.rhs.symbol.tree.asInkuire(variableNames)
122
t match
0 commit comments