Skip to content
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

KSP2: fix KSValueParameter.isVal and isVar #2377

Merged
merged 1 commit into from
Mar 14, 2025
Merged

Conversation

ting-yuan
Copy link
Collaborator

for symbols from libraries.

Fixes #1192 and #2348

for symbols from libraries.
@ting-yuan ting-yuan requested review from dx404 and jsjeon March 14, 2025 04:20
val cstr = ktValueParameterSymbol.containingDeclaration as? KaConstructorSymbol
val cls = cstr?.containingDeclaration as? KaClassSymbol
cls?.declaredMemberScope?.declarations?.filterIsInstance<KaPropertySymbol>()
?.firstOrNull { it.name == ktValueParameterSymbol.name }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately isFromPrimaryConstructor is also PSI based and doesn't work on libraries.

But that reminds me of a case that this patch doesn't cover:

class MyClass(prop: Int = 1) {
    val prop: Int = 0
}

IMHO it is impossible to distinguish without adding metadata in the libraries.

Anyway, this patch covers most of the use cases and doesn't introduce new issues. If there are no other concerns, I'm going to merge it.

@ting-yuan ting-yuan merged commit a8a204f into google:main Mar 14, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incorrect KSValueParameter#isVal/isVar() when inspecting precompiled class.
2 participants