aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/src/main/kotlin/links/DRI.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/links/DRI.kt b/core/src/main/kotlin/links/DRI.kt
index b6270467..0bce22eb 100644
--- a/core/src/main/kotlin/links/DRI.kt
+++ b/core/src/main/kotlin/links/DRI.kt
@@ -95,7 +95,7 @@ data class TypeReference(val classNames: String, val typeBounds: List<TypeRefere
private fun from(t: KotlinType): TypeReference =
when (val d = t.constructor.declarationDescriptor) {
- is TypeParameterDescriptor -> from(d)
+ is TypeParameterDescriptor -> TypeReference("todo:${d.name}")
else -> TypeReference(t.constructorName.orEmpty(), t.arguments.map { from(it) })
}