You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -55,6 +55,7 @@ class HierarchyTest extends ScaladocTest("hierarchy"):
55
55
"A1"->"Object",
56
56
"A2[Int]"->"Object",
57
57
"A3[Int, String]"->"Object",
58
+
"A4"->"Object",
58
59
"B1"->"Object",
59
60
"B1"->"A1",
60
61
"B2"->"Object",
@@ -72,6 +73,7 @@ class HierarchyTest extends ScaladocTest("hierarchy"):
72
73
"E2"->"D2[Int, Boolean]",
73
74
"E2"->"D3",
74
75
"D2[Int, Boolean]"->"Object",
76
+
"D3"->"A4",
75
77
"D3"->"Object",
76
78
"E2"->"C1[Int, Boolean, Any]"
77
79
),
@@ -90,11 +92,12 @@ class HierarchyTest extends ScaladocTest("hierarchy"):
90
92
"Matchable"->"Any",
91
93
"Object"->"Any",
92
94
"A2[T]"->"Object",
93
-
"B2"->"A2[T]",// These are not actually true, becuase we lose information about hierarchy in subtypes and their possible mapping to supertypes other that that type itself, e. g. linking to `Object`
95
+
"B2"->"A2[T]",
94
96
"B3"->"A2[T]",
95
-
"C1[A, B, C]"->"A2[T]",
96
-
"E1"->"A2[T]",
97
-
"E2"->"A2[T]"
97
+
"C1[A, B, C]"->"B2",
98
+
"C1[A, B, C]"->"B3",
99
+
"E1"->"C1[A, B, C]",
100
+
"E2"->"C1[A, B, C]"
98
101
),
99
102
graph.get.edges.map((a, b) => (a.signature.getName, b.signature.getName)).toSet
0 commit comments