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 cf0cfd3 commit a8164c4Copy full SHA for a8164c4
scaladoc/src/dotty/tools/scaladoc/tasty/ClassLikeSupport.scala
@@ -128,7 +128,10 @@ trait ClassLikeSupport:
128
if typ.isInstanceOf[Inkuire.Type] then {
129
val t = typ.asInstanceOf[Inkuire.Type]
130
val rhsTypeLike = typeDef.rhs.asInkuire(variableNames)
131
- Inkuire.db = Inkuire.db.copy(typeAliases = Inkuire.db.typeAliases.updated(t.itid.get, rhsTypeLike))
+ Inkuire.db = Inkuire.db.copy(
132
+ typeAliases = Inkuire.db.typeAliases.updated(t.itid.get, rhsTypeLike),
133
+ types = Inkuire.db.types.updated(t.itid.get, (t, Seq.empty))
134
+ )
135
}
136
if typeDef.rhs.symbol.flags.is(Flags.JavaDefined) then
137
val typJava = typeDef.rhs.asInkuire(variableNames)
0 commit comments