-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] master from google:master #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
PiperOrigin-RevId: 761664625
…tlin sources. In general, users should be using `kotlin.collections.Set` rather than `java.util.Set` in kotlin sources, but we've decided we should still support it. This also keeps things consistent with KAPT, since we support it implicitly in KAPT today. This CL also reenables KSP in Dagger's functional tests, which was accidentally turned off when switching `dagger.useKsp=true` from plugin options to javacopts since we were looking for it in plugin options. RELNOTES=N/A PiperOrigin-RevId: 761741915
🚨 gitStream Monthly Automation Limit Reached 🚨 Your organization has exceeded the number of pull requests allowed for automation with gitStream. To continue automating your PR workflows and unlock additional features, please contact LinearB. |
Reviewer's GuideThis PR adds Java-based multibinding tests for Kotlin sources, expands internal XProcessing support for java.util collections, renames the COLLECTIONS constant for clarity and updates related request representations, and standardizes processor plugin naming in the compatibility layer. Updated Class Diagram for XTypeNamesclassDiagram
class XTypeNames {
+XClassName JAVA_UTIL_COLLECTIONS
+XClassName JAVA_UTIL_SET
+XClassName JAVA_UTIL_MAP
+XClassName FACTORY
+XClassName INJECTED_FIELD_SIGNATURE
%% Old 'COLLECTIONS' field is replaced by 'JAVA_UTIL_COLLECTIONS'
}
Updated Class Diagram for MapType and SetTypeclassDiagram
class MapType {
<<static>> +boolean isMap(XType type)
}
class SetType {
<<static>> +boolean isSet(XType type)
}
note for MapType "Method isMap() updated to include check for XTypeNames.JAVA_UTIL_MAP"
note for SetType "Method isSet() updated to include check for XTypeNames.JAVA_UTIL_SET"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.1)
Can you help keep this open source service alive? 💖 Please sponsor : )
Summary by Sourcery
Add support for java.util.Map and java.util.Set in Kotlin multibinding, simplify processor plugin configuration, and add end-to-end tests for Java–Kotlin collection interoperability.
Enhancements:
Build:
Tests: