-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix type names for inline types on the KSP side
For inline value types used as type arguments we should generate boxed type names. For example: For type `kotlin.collections.List<kotlin.UInt>`, we should generate `java.util.List<kotlin.UInt>` instead of `java.util.List<java.lang.Integer>`. This also applies to generic value types. So for type `kotlin.collections.List<kotlin.Result<kotlin.Int>>`, we should generate `java.util.List<kotlin.Result<java.lang.Integer>>` instead of `java.util.List<java.lang.Object>`. Bug: google/dagger#4096 Test: XTypeTest Change-Id: I3fcd8cb8e5b8f81bb503eb278cd2b8d39b1e991e
- Loading branch information
1 parent
4d1d187
commit 446445c
Showing
3 changed files
with
139 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters