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
case _ =>throwException("Match error in SymRef/TypeOrBounds/ClassDef. This should not happen, please open an issue. "+ convertTypeOrBoundsToReference(reflect)(typeOrBounds))
92
92
}
93
-
case reflect.IsPackageDefSymbol(_) | reflect.IsTypeDefSymbol(_) | reflect.IsValDefSymbol(_) =>
93
+
case reflect.IsTermSymbol(_) | reflect.IsTypeDefSymbol(_) =>
94
94
convertTypeOrBoundsToReference(reflect)(typeOrBounds) match {
95
95
caseTypeReference(label, link, xs, _) =>TypeReference(symbol.name, link +"/"+ label, xs)
case _ =>throwException("Match error in SymRef/TypeOrBounds/Other. This should not happen, please open an issue. "+ convertTypeOrBoundsToReference(reflect)(typeOrBounds))
99
99
}
100
-
case reflect.IsTermSymbol(_) => convertTypeOrBoundsToReference(reflect)(typeOrBounds) match {
101
-
caseTypeReference(label, link, xs, _) =>TypeReference(symbol.name, link +"/"+ label, xs)
case _ =>throwException("Match error in SymRef/TypeOrBounds/Term. This should not happen, please open an issue. "+ convertTypeOrBoundsToReference(reflect)(typeOrBounds))
105
-
}
106
100
case _ =>throwException("Match error in SymRef. This should not happen, please open an issue. "+ symbol)
107
101
}
108
102
case _ =>throwException("No match for type in conversion to Reference. This should not happen, please open an issue. "+ tp)
0 commit comments