mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-23 16:06:24 +00:00
[clang-tidy] fix readability-redundant-member-init auto-fix of Function-try-block
Summary: This fixes https://bugs.llvm.org/show_bug.cgi?id=39310 Reviewers: malcolm.parsons, ioeric Reviewed By: malcolm.parsons Subscribers: xazax.hun Tags: #clang-format, #clang-tools-extra Differential Revision: https://reviews.llvm.org/D74800
This commit is contained in:
parent
38419b8afa
commit
709fd989b6
@ -418,3 +418,17 @@ NegativeTemplateExisting<double> nted(0);
|
|||||||
};
|
};
|
||||||
|
|
||||||
MACRO();
|
MACRO();
|
||||||
|
|
||||||
|
|
||||||
|
class FunctionTryBlock {
|
||||||
|
public:
|
||||||
|
FunctionTryBlock() try : i(5), k(8) {}
|
||||||
|
// CHECK-FIXES: FunctionTryBlock() try {}
|
||||||
|
catch (...) {}
|
||||||
|
|
||||||
|
private:
|
||||||
|
int i, k;
|
||||||
|
// CHECK-MESSAGES: :[[@LINE-1]]:7: warning: use default member initializer for 'i' [modernize-use-default-member-init]
|
||||||
|
// CHECK-MESSAGES: :[[@LINE-2]]:10: warning: use default member initializer for 'k' [modernize-use-default-member-init]
|
||||||
|
// CHECK-FIXES: int i{5}, k{8};
|
||||||
|
};
|
||||||
|
@ -819,10 +819,15 @@ private:
|
|||||||
Tok->Type = TT_BitFieldColon;
|
Tok->Type = TT_BitFieldColon;
|
||||||
} else if (Contexts.size() == 1 &&
|
} else if (Contexts.size() == 1 &&
|
||||||
!Line.First->isOneOf(tok::kw_enum, tok::kw_case)) {
|
!Line.First->isOneOf(tok::kw_enum, tok::kw_case)) {
|
||||||
if (Tok->getPreviousNonComment()->isOneOf(tok::r_paren,
|
FormatToken *Prev = Tok->getPreviousNonComment();
|
||||||
tok::kw_noexcept))
|
if (Prev->isOneOf(tok::r_paren, tok::kw_noexcept))
|
||||||
Tok->Type = TT_CtorInitializerColon;
|
Tok->Type = TT_CtorInitializerColon;
|
||||||
else
|
else if (Prev->is(tok::kw_try)) {
|
||||||
|
// Member initializer list within function try block.
|
||||||
|
FormatToken *PrevPrev = Prev->getPreviousNonComment();
|
||||||
|
if (PrevPrev && PrevPrev->isOneOf(tok::r_paren, tok::kw_noexcept))
|
||||||
|
Tok->Type = TT_CtorInitializerColon;
|
||||||
|
} else
|
||||||
Tok->Type = TT_InheritanceColon;
|
Tok->Type = TT_InheritanceColon;
|
||||||
} else if (canBeObjCSelectorComponent(*Tok->Previous) && Tok->Next &&
|
} else if (canBeObjCSelectorComponent(*Tok->Previous) && Tok->Next &&
|
||||||
(Tok->Next->isOneOf(tok::r_paren, tok::comma) ||
|
(Tok->Next->isOneOf(tok::r_paren, tok::comma) ||
|
||||||
|
@ -1849,11 +1849,20 @@ void UnwrappedLineParser::parseTryCatch() {
|
|||||||
if (FormatTok->is(tok::colon)) {
|
if (FormatTok->is(tok::colon)) {
|
||||||
// We are in a function try block, what comes is an initializer list.
|
// We are in a function try block, what comes is an initializer list.
|
||||||
nextToken();
|
nextToken();
|
||||||
|
|
||||||
|
// In case identifiers were removed by clang-tidy, what might follow is
|
||||||
|
// multiple commas in sequence - before the first identifier.
|
||||||
|
while (FormatTok->is(tok::comma))
|
||||||
|
nextToken();
|
||||||
|
|
||||||
while (FormatTok->is(tok::identifier)) {
|
while (FormatTok->is(tok::identifier)) {
|
||||||
nextToken();
|
nextToken();
|
||||||
if (FormatTok->is(tok::l_paren))
|
if (FormatTok->is(tok::l_paren))
|
||||||
parseParens();
|
parseParens();
|
||||||
if (FormatTok->is(tok::comma))
|
|
||||||
|
// In case identifiers were removed by clang-tidy, what might follow is
|
||||||
|
// multiple commas in sequence - after the first identifier.
|
||||||
|
while (FormatTok->is(tok::comma))
|
||||||
nextToken();
|
nextToken();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,6 +151,31 @@ TEST_F(CleanupTest, CtorInitializationSimpleRedundantComma) {
|
|||||||
EXPECT_EQ(Expected, cleanupAroundOffsets({15}, Code));
|
EXPECT_EQ(Expected, cleanupAroundOffsets({15}, Code));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// regression test for bug 39310
|
||||||
|
TEST_F(CleanupTest, CtorInitializationSimpleRedundantCommaInFunctionTryBlock) {
|
||||||
|
std::string Code = "class A {\nA() try : , {} };";
|
||||||
|
std::string Expected = "class A {\nA() try {} };";
|
||||||
|
EXPECT_EQ(Expected, cleanupAroundOffsets({21, 23}, Code));
|
||||||
|
|
||||||
|
Code = "class A {\nA() try : x(1), {} };";
|
||||||
|
Expected = "class A {\nA() try : x(1) {} };";
|
||||||
|
EXPECT_EQ(Expected, cleanupAroundOffsets({27}, Code));
|
||||||
|
|
||||||
|
Code = "class A {\nA() try :,,,,{} };";
|
||||||
|
Expected = "class A {\nA() try {} };";
|
||||||
|
EXPECT_EQ(Expected, cleanupAroundOffsets({19}, Code));
|
||||||
|
|
||||||
|
Code = "class A {\nA() try : x(1),,, {} };";
|
||||||
|
Expected = "class A {\nA() try : x(1) {} };";
|
||||||
|
EXPECT_EQ(Expected, cleanupAroundOffsets({27}, Code));
|
||||||
|
|
||||||
|
// Do not remove every comma following a colon as it simply doesn't make
|
||||||
|
// sense in some situations.
|
||||||
|
Code = "try : , {}";
|
||||||
|
Expected = "try : , {}";
|
||||||
|
EXPECT_EQ(Expected, cleanupAroundOffsets({8}, Code));
|
||||||
|
}
|
||||||
|
|
||||||
TEST_F(CleanupTest, CtorInitializationSimpleRedundantColon) {
|
TEST_F(CleanupTest, CtorInitializationSimpleRedundantColon) {
|
||||||
std::string Code = "class A {\nA() : =default; };";
|
std::string Code = "class A {\nA() : =default; };";
|
||||||
std::string Expected = "class A {\nA() =default; };";
|
std::string Expected = "class A {\nA() =default; };";
|
||||||
|
Loading…
Reference in New Issue
Block a user