[clang-format] Rename CSharpNullConditionalSq and add missing test

Summary:
Rename CSharpNullConditionalSq to CSharpNullConditionalLSquare.

Add test for spaces inside [] with C# Null conditionals.

Address comments missed from https://reviews.llvm.org/D75368.

Reviewers: krasimir

Reviewed By: krasimir

Subscribers: cfe-commits

Tags: #clang-format, #clang

Differential Revision: https://reviews.llvm.org/D75456
This commit is contained in:
Jonathan Coe 2020-03-02 15:46:33 +00:00
parent 675326466b
commit 9c4afce702
4 changed files with 7 additions and 6 deletions

View File

@ -106,7 +106,7 @@ namespace format {
TYPE(CSharpNullable) \
TYPE(CSharpNullCoalescing) \
TYPE(CSharpNullConditional) \
TYPE(CSharpNullConditionalSq) \
TYPE(CSharpNullConditionalLSquare) \
TYPE(Unknown)
enum TokenType {

View File

@ -345,7 +345,7 @@ bool FormatTokenLexer::tryMergeCSharpNullConditional() {
if (PeriodOrLSquare->is(tok::l_square)) {
Question->Tok.setKind(tok::question); // no '?[' in clang tokens.
Question->Type = TT_CSharpNullConditionalSq;
Question->Type = TT_CSharpNullConditionalLSquare;
} else {
Question->Tok.setKind(tok::question); // no '?.' in clang tokens.
Question->Type = TT_CSharpNullConditional;

View File

@ -972,7 +972,7 @@ private:
}
break;
case tok::question:
if (Tok->is(TT_CSharpNullConditionalSq)) {
if (Tok->is(TT_CSharpNullConditionalLSquare)) {
if (!parseSquare())
return false;
break;
@ -1456,7 +1456,7 @@ private:
return;
}
if (CurrentToken->TokenText == "?[") {
Current.Type = TT_CSharpNullConditionalSq;
Current.Type = TT_CSharpNullConditionalLSquare;
return;
}
}
@ -2947,11 +2947,11 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
return true;
// No space before '?['.
if (Right.is(TT_CSharpNullConditionalSq))
if (Right.is(TT_CSharpNullConditionalLSquare))
return false;
// Possible space inside `?[ 0 ]`.
if (Left.is(TT_CSharpNullConditionalSq))
if (Left.is(TT_CSharpNullConditionalLSquare))
return Style.SpacesInSquareBrackets;
// space between keywords and paren e.g. "using ("

View File

@ -607,6 +607,7 @@ TEST_F(FormatTestCSharp, CSharpSpaces) {
Style.SpacesInSquareBrackets = true;
verifyFormat(R"(private float[ , ] Values;)", Style);
verifyFormat(R"(string dirPath = args?[ 0 ];)", Style);
}
TEST_F(FormatTestCSharp, CSharpNullableTypes) {