diff --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst --- a/clang/docs/ClangFormatStyleOptions.rst +++ b/clang/docs/ClangFormatStyleOptions.rst @@ -1432,6 +1432,10 @@ f(MyMap[{composite, key}]); f(MyMap[{ composite, key }]); new int[3]{1, 2, 3}; new int[3]{ 1, 2, 3 }; +**DeriveLineEnding** (``bool``) + Analyze the formatted file for the most used line ending (``\r\n`` + or ``\n``). ``UseCRLF`` is only used as a fallback if none can be derived. + **DerivePointerAlignment** (``bool``) If ``true``, analyze the formatted file for the most common alignment of ``&`` and ``*``. @@ -2257,6 +2261,16 @@ true: false: for (auto v : values) {} vs. for(auto v: values) {} +**SpaceBeforeSquareBrackets** (``bool``) + If ``true``, spaces will be before ``[``. + Lambdas will not be affected. Only the first ``[`` will get a space added. + + .. code-block:: c++ + + true: false: + int a [5]; vs. int a[5]; + int a [5][5]; vs. int a[5][5]; + **SpaceInEmptyBlock** (``bool``) If ``true``, spaces will be inserted into ``{}``. @@ -2409,6 +2423,10 @@ For example: OpenSSL STACK_OF, BSD LIST_ENTRY. +**UseCRLF** (``bool``) + Use ``\r\n`` instead of ``\n`` for line breaks. + Also used as fallback if ``DeriveLineEnding`` is true. + **UseTab** (``UseTabStyle``) The way to use tab characters in the resulting file. diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h --- a/clang/include/clang/Format/Format.h +++ b/clang/include/clang/Format/Format.h @@ -1986,6 +1986,15 @@ /// \endcode bool SpacesInSquareBrackets; + /// If ``true``, spaces will be before ``[``. + /// Lambdas will not be affected. Only the first ``[`` will get a space added. + /// \code + /// true: false: + /// int a [5]; vs. int a[5]; + /// int a [5][5]; vs. int a[5][5]; + /// \endcode + bool SpaceBeforeSquareBrackets; + /// Supported language standards for parsing and formatting C++ constructs. /// \code /// Latest: vector> @@ -2150,10 +2159,10 @@ SpacesInCStyleCastParentheses == R.SpacesInCStyleCastParentheses && SpacesInParentheses == R.SpacesInParentheses && SpacesInSquareBrackets == R.SpacesInSquareBrackets && + SpaceBeforeSquareBrackets == R.SpaceBeforeSquareBrackets && Standard == R.Standard && TabWidth == R.TabWidth && StatementMacros == R.StatementMacros && UseTab == R.UseTab && - UseCRLF == R.UseCRLF && - TypenameMacros == R.TypenameMacros; + UseCRLF == R.UseCRLF && TypenameMacros == R.TypenameMacros; } llvm::Optional GetLanguageStyle(LanguageKind Language) const; diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp old mode 100644 new mode 100755 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -543,6 +543,8 @@ Style.SpacesInCStyleCastParentheses); IO.mapOptional("SpacesInParentheses", Style.SpacesInParentheses); IO.mapOptional("SpacesInSquareBrackets", Style.SpacesInSquareBrackets); + IO.mapOptional("SpaceBeforeSquareBrackets", + Style.SpaceBeforeSquareBrackets); IO.mapOptional("Standard", Style.Standard); IO.mapOptional("StatementMacros", Style.StatementMacros); IO.mapOptional("TabWidth", Style.TabWidth); @@ -813,6 +815,7 @@ LLVMStyle.SpaceBeforeRangeBasedForLoopColon = true; LLVMStyle.SpaceBeforeAssignmentOperators = true; LLVMStyle.SpaceBeforeCpp11BracedList = false; + LLVMStyle.SpaceBeforeSquareBrackets = false; LLVMStyle.SpacesInAngles = false; LLVMStyle.PenaltyBreakAssignment = prec::Assignment; @@ -1354,10 +1357,11 @@ WhitespaceManager Whitespaces( Env.getSourceManager(), Style, - Style.DeriveLineEnding ? - inputUsesCRLF(Env.getSourceManager().getBufferData(Env.getFileID()), - Style.UseCRLF) : - Style.UseCRLF); + Style.DeriveLineEnding + ? inputUsesCRLF( + Env.getSourceManager().getBufferData(Env.getFileID()), + Style.UseCRLF) + : Style.UseCRLF); ContinuationIndenter Indenter(Style, Tokens.getKeywords(), Env.getSourceManager(), Whitespaces, Encoding, BinPackInconclusiveFunctions); diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -2724,7 +2724,9 @@ !Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, TT_DesignatedInitializerLSquare, TT_StructuredBindingLSquare, TT_AttributeSquare) && - !Left.isOneOf(tok::numeric_constant, TT_DictLiteral)) + !Left.isOneOf(tok::numeric_constant, TT_DictLiteral) && + !(!Left.is(tok::r_square) && Style.SpaceBeforeSquareBrackets && + Right.is(TT_ArraySubscriptLSquare))) return false; if (Left.is(tok::l_brace) && Right.is(tok::r_brace)) return !Left.Children.empty(); // No spaces in "{}". diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -10643,6 +10643,41 @@ verifyFormat("int foo = [ &bar, = ]() {};", Spaces); } +TEST_F(FormatTest, ConfigurableSpaceBeforeBrackets) { + FormatStyle NoSpaceStyle = getLLVMStyle(); + verifyFormat("int a[5];", NoSpaceStyle); + verifyFormat("a[3] += 42;", NoSpaceStyle); + + verifyFormat("int a[1];", NoSpaceStyle); + verifyFormat("int 1 [a];", NoSpaceStyle); + verifyFormat("int a[1][2];", NoSpaceStyle); + verifyFormat("a[7] = 5;", NoSpaceStyle); + verifyFormat("int a = (f())[23];", NoSpaceStyle); + verifyFormat("f([] {})", NoSpaceStyle); + + FormatStyle Space = getLLVMStyle(); + Space.SpaceBeforeSquareBrackets = true; + verifyFormat("int c = []() -> int { return 2; }();\n", Space); + verifyFormat("return [i, args...] {};", Space); + + verifyFormat("int a [5];", Space); + verifyFormat("a [3] += 42;", Space); + verifyFormat("constexpr char hello []{\"hello\"};", Space); + verifyFormat("double &operator[](int i) { return 0; }\n" + "int i;", + Space); + verifyFormat("std::unique_ptr foo() {}", Space); + verifyFormat("int i = a [a][a]->f();", Space); + verifyFormat("int i = (*b) [a]->f();", Space); + + verifyFormat("int a [1];", Space); + verifyFormat("int 1 [a];", Space); + verifyFormat("int a [1][2];", Space); + verifyFormat("a [7] = 5;", Space); + verifyFormat("int a = (f()) [23];", Space); + verifyFormat("f([] {})", Space); +} + TEST_F(FormatTest, ConfigurableSpaceBeforeAssignmentOperators) { verifyFormat("int a = 5;"); verifyFormat("a += 42;"); @@ -12529,6 +12564,7 @@ CHECK_PARSE_BOOL(SpaceBeforeCtorInitializerColon); CHECK_PARSE_BOOL(SpaceBeforeInheritanceColon); CHECK_PARSE_BOOL(SpaceBeforeRangeBasedForLoopColon); + CHECK_PARSE_BOOL(SpaceBeforeSquareBrackets); CHECK_PARSE_BOOL(UseCRLF); CHECK_PARSE_NESTED_BOOL(BraceWrapping, AfterCaseLabel);