forked from OSchip/llvm-project
[clang-format] [PR52228] clang-format csharp inconsistant nested namespace indentation
https://bugs.llvm.org/show_bug.cgi?id=52228 For multilevel namespaces in C# get their content indented when NamespaceIndentation: None is set, where as single level namespaces are formatted correctly. Reviewed By: HazardyKnusperkeks, jbcoe Differential Revision: https://reviews.llvm.org/D112887
This commit is contained in:
parent
a310cbae02
commit
6e58d14e5b
|
@ -2216,7 +2216,7 @@ void UnwrappedLineParser::parseNamespace() {
|
|||
parseParens();
|
||||
} else {
|
||||
while (FormatTok->isOneOf(tok::identifier, tok::coloncolon, tok::kw_inline,
|
||||
tok::l_square)) {
|
||||
tok::l_square, tok::period)) {
|
||||
if (FormatTok->is(tok::l_square))
|
||||
parseSquare();
|
||||
else
|
||||
|
|
|
@ -1314,5 +1314,60 @@ TEST_F(FormatTestCSharp, CSharpAfterClass) {
|
|||
Style);
|
||||
}
|
||||
|
||||
TEST_F(FormatTestCSharp, NamespaceIndentation) {
|
||||
FormatStyle Style = getMicrosoftStyle(FormatStyle::LK_CSharp);
|
||||
Style.NamespaceIndentation = FormatStyle::NI_None;
|
||||
|
||||
verifyFormat("namespace A\n"
|
||||
"{\n"
|
||||
"public interface Name1\n"
|
||||
"{\n"
|
||||
"}\n"
|
||||
"}\n",
|
||||
Style);
|
||||
|
||||
verifyFormat("namespace A.B\n"
|
||||
"{\n"
|
||||
"public interface Name1\n"
|
||||
"{\n"
|
||||
"}\n"
|
||||
"}\n",
|
||||
Style);
|
||||
|
||||
Style.NamespaceIndentation = FormatStyle::NI_Inner;
|
||||
|
||||
verifyFormat("namespace A\n"
|
||||
"{\n"
|
||||
"namespace B\n"
|
||||
"{\n"
|
||||
" public interface Name1\n"
|
||||
" {\n"
|
||||
" }\n"
|
||||
"}\n"
|
||||
"}\n",
|
||||
Style);
|
||||
|
||||
Style.NamespaceIndentation = FormatStyle::NI_All;
|
||||
|
||||
verifyFormat("namespace A.B\n"
|
||||
"{\n"
|
||||
" public interface Name1\n"
|
||||
" {\n"
|
||||
" }\n"
|
||||
"}\n",
|
||||
Style);
|
||||
|
||||
verifyFormat("namespace A\n"
|
||||
"{\n"
|
||||
" namespace B\n"
|
||||
" {\n"
|
||||
" public interface Name1\n"
|
||||
" {\n"
|
||||
" }\n"
|
||||
" }\n"
|
||||
"}\n",
|
||||
Style);
|
||||
}
|
||||
|
||||
} // namespace format
|
||||
} // end namespace clang
|
||||
|
|
Loading…
Reference in New Issue