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
val prop = getPropertiesByFqName(pluginContext, propertyFilter)
2421
+
val prop = getPropertiesByFqName(pluginContext, propertyPkg, propertyName)
2422
2422
.firstOrNull { it.owner.parentClassOrNull?.fqNameWhenAvailable?.asString() == type }
2423
2423
?.owner
2424
2424
@@ -2427,7 +2427,7 @@ open class KotlinFileExtractor(
2427
2427
extractExternalClassLater(prop.parentAsClass)
2428
2428
}
2429
2429
} else {
2430
-
logger.errorElement("Couldn't find JVM intrinsic property $propertyFilter in $type", warnAgainstElement)
2430
+
logger.errorElement("Couldn't find JVM intrinsic property $propertyPkg$propertyName in $type", warnAgainstElement)
2431
2431
}
2432
2432
2433
2433
return prop
@@ -3019,7 +3019,7 @@ open class KotlinFileExtractor(
3019
3019
}
3020
3020
isBuiltinCall(c, "<get-java>", "kotlin.jvm") -> {
3021
3021
// Special case for KClass<*>.java, which is used in the Parcelize plugin. In normal cases, this is already rewritten to the property referenced below:
0 commit comments