-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Diagnostics][Qol] SR-11295 Emit diagnostics for same type coercion. #26710
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
xedin
merged 11 commits into
swiftlang:master
from
LucianoPAlmeida:SR-11295-warning-unecessary-casts
Oct 24, 2019
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1c6e35a
Adding diagnostic message for redundant cast
LucianoPAlmeida 4385dd8
Creating UnnecessaryCoercion warning fix
LucianoPAlmeida cac0d07
Attempting UnnecessaryCoercion for ExplicityTypeCoercion on CSSimplify
LucianoPAlmeida 16bd889
Fixing coercion error tests
LucianoPAlmeida 86ca345
Fixing warning UnnecessaryCoercion tests
LucianoPAlmeida 638d702
Adding SR-11295 specific tests
LucianoPAlmeida 5d1eeac
Resolving conflicts
LucianoPAlmeida a92e62f
Fixing formatting issues
LucianoPAlmeida 3dc82a6
Handling ExplicityCoercion in simplifyLocator
LucianoPAlmeida 48fdd58
Merge branch 'master' of https://github.com/apple/swift into SR-11295…
LucianoPAlmeida d3abe34
Merge branch 'master' of https://github.com/apple/swift into SR-11295…
LucianoPAlmeida File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -709,8 +709,8 @@ class ContextualFailure : public FailureDiagnostic { | |
/// If we're trying to convert something to `nil`. | ||
bool diagnoseConversionToNil() const; | ||
|
||
// If we're trying to convert something of type "() -> T" to T, | ||
// then we probably meant to call the value. | ||
/// If we're trying to convert something of type "() -> T" to T, | ||
/// then we probably meant to call the value. | ||
bool diagnoseMissingFunctionCall() const; | ||
|
||
/// Produce a specialized diagnostic if this is an invalid conversion to Bool. | ||
|
@@ -1462,11 +1462,11 @@ class MutatingMemberRefOnImmutableBase final : public FailureDiagnostic { | |
bool diagnoseAsError() override; | ||
}; | ||
|
||
// Diagnose an attempt to use AnyObject as the root type of a KeyPath | ||
// | ||
// ```swift | ||
// let keyPath = \AnyObject.bar | ||
// ``` | ||
/// Diagnose an attempt to use AnyObject as the root type of a KeyPath | ||
/// | ||
/// ```swift | ||
/// let keyPath = \AnyObject.bar | ||
/// ``` | ||
class AnyObjectKeyPathRootFailure final : public FailureDiagnostic { | ||
|
||
public: | ||
|
@@ -1776,6 +1776,27 @@ class ExpandArrayIntoVarargsFailure final : public ContextualFailure { | |
void tryDropArrayBracketsFixIt(Expr *anchor) const; | ||
}; | ||
|
||
/// Diagnose a situation where there is an explicit type coercion | ||
/// to the same type e.g.: | ||
/// | ||
/// ```swift | ||
/// Double(1) as Double // redundant cast to 'Double' has no effect | ||
/// 1 as Double as Double // redundant cast to 'Double' has no effect | ||
/// let string = "String" | ||
/// let s = string as String // redundant cast to 'String' has no effect | ||
/// ``` | ||
class UnnecessaryCoercionFailure final | ||
: public ContextualFailure { | ||
|
||
public: | ||
UnnecessaryCoercionFailure(Expr *root, ConstraintSystem &cs, | ||
Type fromType, Type toType, | ||
ConstraintLocator *locator) | ||
: ContextualFailure(root, cs, fromType, toType, locator) {} | ||
|
||
bool diagnoseAsError() override; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More of a meta-comment - It looks like we add more and more warnings so it might make sense to do a follow-up by adding |
||
}; | ||
|
||
/// Diagnose a situation there is a mismatch between argument and parameter | ||
/// types e.g.: | ||
/// | ||
|
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.