-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[IDE] Call into matchWitnessStructure
to check if we should inherit a comment from an overridden declaration
#75666
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
Merged
Conversation
This file contains hidden or 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
c9ec1a5
to
51277bd
Compare
@swift-ci Please smoke test |
51277bd
to
602827b
Compare
@swift-ci Please smoke test |
49daaab
to
ca3eb38
Compare
@swift-ci Please smoke test |
ca3eb38
to
26a502c
Compare
@swift-ci Please smoke test |
hamishknight
approved these changes
Aug 9, 2024
lib/Sema/TypeCheckProtocol.cpp
Outdated
llvm::function_ref<RequirementMatch(bool, ArrayRef<OptionalAdjustment>)> | ||
finalize) { | ||
|
||
/// Implementation of `matchWitnessStructure` that also sets a few out paramter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested change
/// Implementation of `matchWitnessStructure` that also sets a few out paramter | |
/// Implementation of `matchWitnessStructure` that also sets a few out parameters |
26a502c
to
3c85884
Compare
… from `AST` to `Sema` This allows use to re-use logic from Sema in those requests. This commit just moves functions around and does not change any functionality.
3c85884
to
a04bf1d
Compare
@swift-ci Please smoke test |
… a comment from an overridden declaration
a04bf1d
to
f169bdb
Compare
@swift-ci Please smoke test |
hamishknight
approved these changes
Aug 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Instead of duplicating logic whether a witness can match a requirement structurally (like static vs. non-static, matching decl kind etc.) call into the type checker to determine that.
This required moving
getDocCommentProvidingDecl
andgetCascadingDocComment
from AST to IDE.Matching the type seemed to work fairly differently between the type checker and for IDE purposes, so we are not sharing that.