Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
aeremin committed Aug 6, 2022
2 parents 6ac7055 + 7a6fae3 commit 5377a6f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ class JdepsGenExtension(
?: return
explicitClassesCanonicalPaths.add(virtualFileClass.file.path)
}
is ReceiverParameterDescriptor -> {
collectTypeReferences((resolvedCall.resultingDescriptor as ReceiverParameterDescriptor).value.type)
getClassCanonicalPath(resultingDescriptor)?.let { explicitClassesCanonicalPaths.add(it) }
}
is ParameterDescriptor -> {
getClassCanonicalPath(resultingDescriptor)?.let { explicitClassesCanonicalPaths.add(it) }
}
Expand Down

0 comments on commit 5377a6f

Please sign in to comment.