aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/links
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/links')
-rw-r--r--core/src/main/kotlin/links/DRI.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/kotlin/links/DRI.kt b/core/src/main/kotlin/links/DRI.kt
index c13eb04c..b7e5dd1c 100644
--- a/core/src/main/kotlin/links/DRI.kt
+++ b/core/src/main/kotlin/links/DRI.kt
@@ -72,7 +72,7 @@ sealed class TypeReference {
companion object {
fun from(d: ReceiverParameterDescriptor): TypeReference? =
when (d.value) {
- is ExtensionReceiver -> from(d.type)
+ is ExtensionReceiver -> fromPossiblyNullable(d.type)
else -> run {
println("Unknown value type for $d")
null
@@ -80,7 +80,7 @@ sealed class TypeReference {
}
fun from(d: ValueParameterDescriptor): TypeReference? =
- from(d.type)
+ fromPossiblyNullable(d.type)
private fun fromPossiblyNullable(t: KotlinType, self: KotlinType? = null): TypeReference =
from(t, self).let { if (t.isMarkedNullable) Nullable(it) else it }