diff options
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.cpp | 11 | ||||
-rw-r--r-- | clang/lib/Format/FormatToken.h | 1 | ||||
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 15 |
3 files changed, 24 insertions, 3 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.cpp b/clang/lib/Format/ContinuationIndenter.cpp index 3baebed5679..20626a622f8 100644 --- a/clang/lib/Format/ContinuationIndenter.cpp +++ b/clang/lib/Format/ContinuationIndenter.cpp @@ -208,8 +208,13 @@ bool ContinuationIndenter::mustBreak(const LineState &State) { return true; if (Current.NestingLevel == 0 && !Current.isTrailingComment()) { + // Always break after "template <...>" and leading annotations. This is only + // for cases where the entire line does not fit on a single line as a + // different LineFormatter would be used otherwise. if (Previous.ClosesTemplateDeclaration) return true; + if (Previous.is(TT_FunctionAnnotation) && Previous.is(tok::r_paren)) + return true; if (Previous.is(TT_LeadingJavaAnnotation) && Current.isNot(tok::l_paren) && Current.isNot(TT_LeadingJavaAnnotation)) return true; @@ -487,7 +492,8 @@ unsigned ContinuationIndenter::addTokenOnNewLine(LineState &State, !PreviousNonComment->isOneOf(tok::comma, tok::semi) && (PreviousNonComment->isNot(TT_TemplateCloser) || Current.NestingLevel != 0) && - !PreviousNonComment->isOneOf(TT_BinaryOperator, TT_JavaAnnotation, + !PreviousNonComment->isOneOf(TT_BinaryOperator, TT_FunctionAnnotation, + TT_JavaAnnotation, TT_LeadingJavaAnnotation) && Current.isNot(TT_BinaryOperator) && !PreviousNonComment->opensScope()) State.Stack.back().BreakBeforeParameter = true; @@ -568,7 +574,8 @@ unsigned ContinuationIndenter::getNewLineColumn(const LineState &State) { return State.Stack.back().VariablePos; if ((PreviousNonComment && (PreviousNonComment->ClosesTemplateDeclaration || - PreviousNonComment->isOneOf(TT_AttributeParen, TT_JavaAnnotation, + PreviousNonComment->isOneOf(TT_AttributeParen, TT_FunctionAnnotation, + TT_JavaAnnotation, TT_LeadingJavaAnnotation))) || (!Style.IndentWrappedFunctionNames && NextNonComment->isOneOf(tok::kw_operator, TT_FunctionDeclarationName))) diff --git a/clang/lib/Format/FormatToken.h b/clang/lib/Format/FormatToken.h index 0fc20de3c8d..c934398b1a9 100644 --- a/clang/lib/Format/FormatToken.h +++ b/clang/lib/Format/FormatToken.h @@ -42,6 +42,7 @@ enum TokenType { TT_DesignatedInitializerPeriod, TT_DictLiteral, TT_ForEachMacro, + TT_FunctionAnnotation, TT_FunctionDeclarationName, TT_FunctionLBrace, TT_FunctionTypeLParen, diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 94de217eb8e..abd9be6d223 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -493,7 +493,8 @@ private: if (Line.MustBeDeclaration && Contexts.size() == 1 && !Contexts.back().IsExpression && Line.First->isNot(TT_ObjCProperty) && (!Tok->Previous || - !Tok->Previous->isOneOf(tok::kw_decltype, TT_LeadingJavaAnnotation))) + !Tok->Previous->isOneOf(tok::kw_decltype, TT_LeadingJavaAnnotation, + TT_FunctionAnnotation))) Line.MightBeFunctionDecl = true; break; case tok::l_square: @@ -915,9 +916,16 @@ private: } else { Current.Type = TT_LineComment; } + } else if (Current.is(tok::l_paren) && Current.Previous && + Current.Previous->is(TT_FunctionAnnotation)) { + Current.Type = TT_FunctionAnnotation; } else if (Current.is(tok::r_paren)) { if (rParenEndsCast(Current)) Current.Type = TT_CastRParen; + if (Current.MatchingParen && + Current.MatchingParen->is(TT_FunctionAnnotation) && Current.Next && + !Current.Next->isOneOf(tok::semi, tok::colon)) + Current.Type = TT_FunctionAnnotation; } else if (Current.is(tok::at) && Current.Next) { if (Current.Next->isStringLiteral()) { Current.Type = TT_ObjCStringLiteral; @@ -968,6 +976,11 @@ private: TT_LeadingJavaAnnotation)) { Current.Type = Current.Previous->Type; } + } else if (Current.is(tok::identifier) && + Current.TokenText == Current.TokenText.upper() && + (!Current.Previous || + Current.Previous->ClosesTemplateDeclaration)) { + Current.Type = TT_FunctionAnnotation; } } |