From b28ed9cec8dd7225164eb8c0884aa463654ef3fc Mon Sep 17 00:00:00 2001 From: Jonathan Coe Date: Mon, 9 Mar 2020 17:10:09 +0000 Subject: [PATCH] [clang-format] cleanup from D75517 Summary: Fix typo in comment. Add closing brace to test text. Reviewers: krasimir Subscribers: cfe-commits Tags: #clang-format, #clang Differential Revision: https://reviews.llvm.org/D75856 --- clang/lib/Format/TokenAnnotator.cpp | 2 +- clang/unittests/Format/FormatTestCSharp.cpp | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 2673dac..db23058 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -373,7 +373,7 @@ private: if (Tok.Previous && Tok.Previous->is(tok::identifier)) return false; - // Chains [] in of `identifier[i][j][k]` are not attributes. + // Chains of [] in `identifier[i][j][k]` are not attributes. if (Tok.Previous && Tok.Previous->is(tok::r_square)) { auto *MatchingParen = Tok.Previous->MatchingParen; if (!MatchingParen || MatchingParen->is(TT_ArraySubscriptLSquare)) diff --git a/clang/unittests/Format/FormatTestCSharp.cpp b/clang/unittests/Format/FormatTestCSharp.cpp index 7e60fdb..e303889 100644 --- a/clang/unittests/Format/FormatTestCSharp.cpp +++ b/clang/unittests/Format/FormatTestCSharp.cpp @@ -650,8 +650,15 @@ TEST_F(FormatTestCSharp, CSharpArraySubscripts) { FormatStyle Style = getGoogleStyle(FormatStyle::LK_CSharp); // Do not format array subscript operators as attributes. - verifyFormat(R"(if (someThings[index].Contains(myThing)) {)", Style); - verifyFormat(R"(if (someThings[i][j][k].Contains(myThing)) {)", Style); + verifyFormat(R"(// +if (someThings[index].Contains(myThing)) { +})", + Style); + + verifyFormat(R"(// +if (someThings[i][j][k].Contains(myThing)) { +})", + Style); } } // namespace format -- 2.7.4