1 //===--- UnwrappedLineParser.cpp - Format C++ code ------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// This file contains the implementation of the UnwrappedLineParser,
11 /// which turns a stream of tokens into UnwrappedLines.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #include "UnwrappedLineParser.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/Support/Debug.h"
18 #include "llvm/Support/raw_ostream.h"
19 
20 #include <algorithm>
21 
22 #define DEBUG_TYPE "format-parser"
23 
24 namespace clang {
25 namespace format {
26 
27 class FormatTokenSource {
28 public:
29   virtual ~FormatTokenSource() {}
30   virtual FormatToken *getNextToken() = 0;
31 
32   virtual unsigned getPosition() = 0;
33   virtual FormatToken *setPosition(unsigned Position) = 0;
34 };
35 
36 namespace {
37 
38 class ScopedDeclarationState {
39 public:
40   ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack,
41                          bool MustBeDeclaration)
42       : Line(Line), Stack(Stack) {
43     Line.MustBeDeclaration = MustBeDeclaration;
44     Stack.push_back(MustBeDeclaration);
45   }
46   ~ScopedDeclarationState() {
47     Stack.pop_back();
48     if (!Stack.empty())
49       Line.MustBeDeclaration = Stack.back();
50     else
51       Line.MustBeDeclaration = true;
52   }
53 
54 private:
55   UnwrappedLine &Line;
56   std::vector<bool> &Stack;
57 };
58 
59 static bool isLineComment(const FormatToken &FormatTok) {
60   return FormatTok.is(tok::comment) && !FormatTok.TokenText.startswith("/*");
61 }
62 
63 // Checks if \p FormatTok is a line comment that continues the line comment
64 // \p Previous. The original column of \p MinColumnToken is used to determine
65 // whether \p FormatTok is indented enough to the right to continue \p Previous.
66 static bool continuesLineComment(const FormatToken &FormatTok,
67                                  const FormatToken *Previous,
68                                  const FormatToken *MinColumnToken) {
69   if (!Previous || !MinColumnToken)
70     return false;
71   unsigned MinContinueColumn =
72       MinColumnToken->OriginalColumn + (isLineComment(*MinColumnToken) ? 0 : 1);
73   return isLineComment(FormatTok) && FormatTok.NewlinesBefore == 1 &&
74          isLineComment(*Previous) &&
75          FormatTok.OriginalColumn >= MinContinueColumn;
76 }
77 
78 class ScopedMacroState : public FormatTokenSource {
79 public:
80   ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource,
81                    FormatToken *&ResetToken)
82       : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken),
83         PreviousLineLevel(Line.Level), PreviousTokenSource(TokenSource),
84         Token(nullptr), PreviousToken(nullptr) {
85     FakeEOF.Tok.startToken();
86     FakeEOF.Tok.setKind(tok::eof);
87     TokenSource = this;
88     Line.Level = 0;
89     Line.InPPDirective = true;
90   }
91 
92   ~ScopedMacroState() override {
93     TokenSource = PreviousTokenSource;
94     ResetToken = Token;
95     Line.InPPDirective = false;
96     Line.Level = PreviousLineLevel;
97   }
98 
99   FormatToken *getNextToken() override {
100     // The \c UnwrappedLineParser guards against this by never calling
101     // \c getNextToken() after it has encountered the first eof token.
102     assert(!eof());
103     PreviousToken = Token;
104     Token = PreviousTokenSource->getNextToken();
105     if (eof())
106       return &FakeEOF;
107     return Token;
108   }
109 
110   unsigned getPosition() override { return PreviousTokenSource->getPosition(); }
111 
112   FormatToken *setPosition(unsigned Position) override {
113     PreviousToken = nullptr;
114     Token = PreviousTokenSource->setPosition(Position);
115     return Token;
116   }
117 
118 private:
119   bool eof() {
120     return Token && Token->HasUnescapedNewline &&
121            !continuesLineComment(*Token, PreviousToken,
122                                  /*MinColumnToken=*/PreviousToken);
123   }
124 
125   FormatToken FakeEOF;
126   UnwrappedLine &Line;
127   FormatTokenSource *&TokenSource;
128   FormatToken *&ResetToken;
129   unsigned PreviousLineLevel;
130   FormatTokenSource *PreviousTokenSource;
131 
132   FormatToken *Token;
133   FormatToken *PreviousToken;
134 };
135 
136 } // end anonymous namespace
137 
138 class ScopedLineState {
139 public:
140   ScopedLineState(UnwrappedLineParser &Parser,
141                   bool SwitchToPreprocessorLines = false)
142       : Parser(Parser), OriginalLines(Parser.CurrentLines) {
143     if (SwitchToPreprocessorLines)
144       Parser.CurrentLines = &Parser.PreprocessorDirectives;
145     else if (!Parser.Line->Tokens.empty())
146       Parser.CurrentLines = &Parser.Line->Tokens.back().Children;
147     PreBlockLine = std::move(Parser.Line);
148     Parser.Line = llvm::make_unique<UnwrappedLine>();
149     Parser.Line->Level = PreBlockLine->Level;
150     Parser.Line->InPPDirective = PreBlockLine->InPPDirective;
151   }
152 
153   ~ScopedLineState() {
154     if (!Parser.Line->Tokens.empty()) {
155       Parser.addUnwrappedLine();
156     }
157     assert(Parser.Line->Tokens.empty());
158     Parser.Line = std::move(PreBlockLine);
159     if (Parser.CurrentLines == &Parser.PreprocessorDirectives)
160       Parser.MustBreakBeforeNextToken = true;
161     Parser.CurrentLines = OriginalLines;
162   }
163 
164 private:
165   UnwrappedLineParser &Parser;
166 
167   std::unique_ptr<UnwrappedLine> PreBlockLine;
168   SmallVectorImpl<UnwrappedLine> *OriginalLines;
169 };
170 
171 class CompoundStatementIndenter {
172 public:
173   CompoundStatementIndenter(UnwrappedLineParser *Parser,
174                             const FormatStyle &Style, unsigned &LineLevel)
175       : LineLevel(LineLevel), OldLineLevel(LineLevel) {
176     if (Style.BraceWrapping.AfterControlStatement)
177       Parser->addUnwrappedLine();
178     if (Style.BraceWrapping.IndentBraces)
179       ++LineLevel;
180   }
181   ~CompoundStatementIndenter() { LineLevel = OldLineLevel; }
182 
183 private:
184   unsigned &LineLevel;
185   unsigned OldLineLevel;
186 };
187 
188 namespace {
189 
190 class IndexedTokenSource : public FormatTokenSource {
191 public:
192   IndexedTokenSource(ArrayRef<FormatToken *> Tokens)
193       : Tokens(Tokens), Position(-1) {}
194 
195   FormatToken *getNextToken() override {
196     ++Position;
197     return Tokens[Position];
198   }
199 
200   unsigned getPosition() override {
201     assert(Position >= 0);
202     return Position;
203   }
204 
205   FormatToken *setPosition(unsigned P) override {
206     Position = P;
207     return Tokens[Position];
208   }
209 
210   void reset() { Position = -1; }
211 
212 private:
213   ArrayRef<FormatToken *> Tokens;
214   int Position;
215 };
216 
217 } // end anonymous namespace
218 
219 UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style,
220                                          const AdditionalKeywords &Keywords,
221                                          unsigned FirstStartColumn,
222                                          ArrayRef<FormatToken *> Tokens,
223                                          UnwrappedLineConsumer &Callback)
224     : Line(new UnwrappedLine), MustBreakBeforeNextToken(false),
225       CurrentLines(&Lines), Style(Style), Keywords(Keywords),
226       CommentPragmasRegex(Style.CommentPragmas), Tokens(nullptr),
227       Callback(Callback), AllTokens(Tokens), PPBranchLevel(-1),
228       IncludeGuard(Style.IndentPPDirectives == FormatStyle::PPDIS_None
229                        ? IG_Rejected
230                        : IG_Inited),
231       IncludeGuardToken(nullptr), FirstStartColumn(FirstStartColumn) {}
232 
233 void UnwrappedLineParser::reset() {
234   PPBranchLevel = -1;
235   IncludeGuard = Style.IndentPPDirectives == FormatStyle::PPDIS_None
236                      ? IG_Rejected
237                      : IG_Inited;
238   IncludeGuardToken = nullptr;
239   Line.reset(new UnwrappedLine);
240   CommentsBeforeNextToken.clear();
241   FormatTok = nullptr;
242   MustBreakBeforeNextToken = false;
243   PreprocessorDirectives.clear();
244   CurrentLines = &Lines;
245   DeclarationScopeStack.clear();
246   PPStack.clear();
247   Line->FirstStartColumn = FirstStartColumn;
248 }
249 
250 void UnwrappedLineParser::parse() {
251   IndexedTokenSource TokenSource(AllTokens);
252   Line->FirstStartColumn = FirstStartColumn;
253   do {
254     LLVM_DEBUG(llvm::dbgs() << "----\n");
255     reset();
256     Tokens = &TokenSource;
257     TokenSource.reset();
258 
259     readToken();
260     parseFile();
261 
262     // If we found an include guard then all preprocessor directives (other than
263     // the guard) are over-indented by one.
264     if (IncludeGuard == IG_Found)
265       for (auto &Line : Lines)
266         if (Line.InPPDirective && Line.Level > 0)
267           --Line.Level;
268 
269     // Create line with eof token.
270     pushToken(FormatTok);
271     addUnwrappedLine();
272 
273     for (SmallVectorImpl<UnwrappedLine>::iterator I = Lines.begin(),
274                                                   E = Lines.end();
275          I != E; ++I) {
276       Callback.consumeUnwrappedLine(*I);
277     }
278     Callback.finishRun();
279     Lines.clear();
280     while (!PPLevelBranchIndex.empty() &&
281            PPLevelBranchIndex.back() + 1 >= PPLevelBranchCount.back()) {
282       PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1);
283       PPLevelBranchCount.resize(PPLevelBranchCount.size() - 1);
284     }
285     if (!PPLevelBranchIndex.empty()) {
286       ++PPLevelBranchIndex.back();
287       assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size());
288       assert(PPLevelBranchIndex.back() <= PPLevelBranchCount.back());
289     }
290   } while (!PPLevelBranchIndex.empty());
291 }
292 
293 void UnwrappedLineParser::parseFile() {
294   // The top-level context in a file always has declarations, except for pre-
295   // processor directives and JavaScript files.
296   bool MustBeDeclaration =
297       !Line->InPPDirective && Style.Language != FormatStyle::LK_JavaScript;
298   ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack,
299                                           MustBeDeclaration);
300   if (Style.Language == FormatStyle::LK_TextProto)
301     parseBracedList();
302   else
303     parseLevel(/*HasOpeningBrace=*/false);
304   // Make sure to format the remaining tokens.
305   //
306   // LK_TextProto is special since its top-level is parsed as the body of a
307   // braced list, which does not necessarily have natural line separators such
308   // as a semicolon. Comments after the last entry that have been determined to
309   // not belong to that line, as in:
310   //   key: value
311   //   // endfile comment
312   // do not have a chance to be put on a line of their own until this point.
313   // Here we add this newline before end-of-file comments.
314   if (Style.Language == FormatStyle::LK_TextProto &&
315       !CommentsBeforeNextToken.empty())
316     addUnwrappedLine();
317   flushComments(true);
318   addUnwrappedLine();
319 }
320 
321 void UnwrappedLineParser::parseLevel(bool HasOpeningBrace) {
322   bool SwitchLabelEncountered = false;
323   do {
324     tok::TokenKind kind = FormatTok->Tok.getKind();
325     if (FormatTok->Type == TT_MacroBlockBegin) {
326       kind = tok::l_brace;
327     } else if (FormatTok->Type == TT_MacroBlockEnd) {
328       kind = tok::r_brace;
329     }
330 
331     switch (kind) {
332     case tok::comment:
333       nextToken();
334       addUnwrappedLine();
335       break;
336     case tok::l_brace:
337       // FIXME: Add parameter whether this can happen - if this happens, we must
338       // be in a non-declaration context.
339       if (!FormatTok->is(TT_MacroBlockBegin) && tryToParseBracedList())
340         continue;
341       parseBlock(/*MustBeDeclaration=*/false);
342       addUnwrappedLine();
343       break;
344     case tok::r_brace:
345       if (HasOpeningBrace)
346         return;
347       nextToken();
348       addUnwrappedLine();
349       break;
350     case tok::kw_default: {
351       unsigned StoredPosition = Tokens->getPosition();
352       FormatToken *Next;
353       do {
354         Next = Tokens->getNextToken();
355       } while (Next && Next->is(tok::comment));
356       FormatTok = Tokens->setPosition(StoredPosition);
357       if (Next && Next->isNot(tok::colon)) {
358         // default not followed by ':' is not a case label; treat it like
359         // an identifier.
360         parseStructuralElement();
361         break;
362       }
363       // Else, if it is 'default:', fall through to the case handling.
364       LLVM_FALLTHROUGH;
365     }
366     case tok::kw_case:
367       if (Style.Language == FormatStyle::LK_JavaScript &&
368           Line->MustBeDeclaration) {
369         // A 'case: string' style field declaration.
370         parseStructuralElement();
371         break;
372       }
373       if (!SwitchLabelEncountered &&
374           (Style.IndentCaseLabels || (Line->InPPDirective && Line->Level == 1)))
375         ++Line->Level;
376       SwitchLabelEncountered = true;
377       parseStructuralElement();
378       break;
379     default:
380       parseStructuralElement();
381       break;
382     }
383   } while (!eof());
384 }
385 
386 void UnwrappedLineParser::calculateBraceTypes(bool ExpectClassBody) {
387   // We'll parse forward through the tokens until we hit
388   // a closing brace or eof - note that getNextToken() will
389   // parse macros, so this will magically work inside macro
390   // definitions, too.
391   unsigned StoredPosition = Tokens->getPosition();
392   FormatToken *Tok = FormatTok;
393   const FormatToken *PrevTok = Tok->Previous;
394   // Keep a stack of positions of lbrace tokens. We will
395   // update information about whether an lbrace starts a
396   // braced init list or a different block during the loop.
397   SmallVector<FormatToken *, 8> LBraceStack;
398   assert(Tok->Tok.is(tok::l_brace));
399   do {
400     // Get next non-comment token.
401     FormatToken *NextTok;
402     unsigned ReadTokens = 0;
403     do {
404       NextTok = Tokens->getNextToken();
405       ++ReadTokens;
406     } while (NextTok->is(tok::comment));
407 
408     switch (Tok->Tok.getKind()) {
409     case tok::l_brace:
410       if (Style.Language == FormatStyle::LK_JavaScript && PrevTok) {
411         if (PrevTok->isOneOf(tok::colon, tok::less))
412           // A ':' indicates this code is in a type, or a braced list
413           // following a label in an object literal ({a: {b: 1}}).
414           // A '<' could be an object used in a comparison, but that is nonsense
415           // code (can never return true), so more likely it is a generic type
416           // argument (`X<{a: string; b: number}>`).
417           // The code below could be confused by semicolons between the
418           // individual members in a type member list, which would normally
419           // trigger BK_Block. In both cases, this must be parsed as an inline
420           // braced init.
421           Tok->BlockKind = BK_BracedInit;
422         else if (PrevTok->is(tok::r_paren))
423           // `) { }` can only occur in function or method declarations in JS.
424           Tok->BlockKind = BK_Block;
425       } else {
426         Tok->BlockKind = BK_Unknown;
427       }
428       LBraceStack.push_back(Tok);
429       break;
430     case tok::r_brace:
431       if (LBraceStack.empty())
432         break;
433       if (LBraceStack.back()->BlockKind == BK_Unknown) {
434         bool ProbablyBracedList = false;
435         if (Style.Language == FormatStyle::LK_Proto) {
436           ProbablyBracedList = NextTok->isOneOf(tok::comma, tok::r_square);
437         } else {
438           // Using OriginalColumn to distinguish between ObjC methods and
439           // binary operators is a bit hacky.
440           bool NextIsObjCMethod = NextTok->isOneOf(tok::plus, tok::minus) &&
441                                   NextTok->OriginalColumn == 0;
442 
443           // If there is a comma, semicolon or right paren after the closing
444           // brace, we assume this is a braced initializer list.  Note that
445           // regardless how we mark inner braces here, we will overwrite the
446           // BlockKind later if we parse a braced list (where all blocks
447           // inside are by default braced lists), or when we explicitly detect
448           // blocks (for example while parsing lambdas).
449           // FIXME: Some of these do not apply to JS, e.g. "} {" can never be a
450           // braced list in JS.
451           ProbablyBracedList =
452               (Style.Language == FormatStyle::LK_JavaScript &&
453                NextTok->isOneOf(Keywords.kw_of, Keywords.kw_in,
454                                 Keywords.kw_as)) ||
455               (Style.isCpp() && NextTok->is(tok::l_paren)) ||
456               NextTok->isOneOf(tok::comma, tok::period, tok::colon,
457                                tok::r_paren, tok::r_square, tok::l_brace,
458                                tok::ellipsis) ||
459               (NextTok->is(tok::identifier) &&
460                !PrevTok->isOneOf(tok::semi, tok::r_brace, tok::l_brace)) ||
461               (NextTok->is(tok::semi) &&
462                (!ExpectClassBody || LBraceStack.size() != 1)) ||
463               (NextTok->isBinaryOperator() && !NextIsObjCMethod);
464           if (NextTok->is(tok::l_square)) {
465             // We can have an array subscript after a braced init
466             // list, but C++11 attributes are expected after blocks.
467             NextTok = Tokens->getNextToken();
468             ++ReadTokens;
469             ProbablyBracedList = NextTok->isNot(tok::l_square);
470           }
471         }
472         if (ProbablyBracedList) {
473           Tok->BlockKind = BK_BracedInit;
474           LBraceStack.back()->BlockKind = BK_BracedInit;
475         } else {
476           Tok->BlockKind = BK_Block;
477           LBraceStack.back()->BlockKind = BK_Block;
478         }
479       }
480       LBraceStack.pop_back();
481       break;
482     case tok::identifier:
483       if (!Tok->is(TT_StatementMacro))
484         break;
485       LLVM_FALLTHROUGH;
486     case tok::at:
487     case tok::semi:
488     case tok::kw_if:
489     case tok::kw_while:
490     case tok::kw_for:
491     case tok::kw_switch:
492     case tok::kw_try:
493     case tok::kw___try:
494       if (!LBraceStack.empty() && LBraceStack.back()->BlockKind == BK_Unknown)
495         LBraceStack.back()->BlockKind = BK_Block;
496       break;
497     default:
498       break;
499     }
500     PrevTok = Tok;
501     Tok = NextTok;
502   } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty());
503 
504   // Assume other blocks for all unclosed opening braces.
505   for (unsigned i = 0, e = LBraceStack.size(); i != e; ++i) {
506     if (LBraceStack[i]->BlockKind == BK_Unknown)
507       LBraceStack[i]->BlockKind = BK_Block;
508   }
509 
510   FormatTok = Tokens->setPosition(StoredPosition);
511 }
512 
513 template <class T>
514 static inline void hash_combine(std::size_t &seed, const T &v) {
515   std::hash<T> hasher;
516   seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
517 }
518 
519 size_t UnwrappedLineParser::computePPHash() const {
520   size_t h = 0;
521   for (const auto &i : PPStack) {
522     hash_combine(h, size_t(i.Kind));
523     hash_combine(h, i.Line);
524   }
525   return h;
526 }
527 
528 void UnwrappedLineParser::parseBlock(bool MustBeDeclaration, bool AddLevel,
529                                      bool MunchSemi) {
530   assert(FormatTok->isOneOf(tok::l_brace, TT_MacroBlockBegin) &&
531          "'{' or macro block token expected");
532   const bool MacroBlock = FormatTok->is(TT_MacroBlockBegin);
533   FormatTok->BlockKind = BK_Block;
534 
535   size_t PPStartHash = computePPHash();
536 
537   unsigned InitialLevel = Line->Level;
538   nextToken(/*LevelDifference=*/AddLevel ? 1 : 0);
539 
540   if (MacroBlock && FormatTok->is(tok::l_paren))
541     parseParens();
542 
543   size_t NbPreprocessorDirectives =
544       CurrentLines == &Lines ? PreprocessorDirectives.size() : 0;
545   addUnwrappedLine();
546   size_t OpeningLineIndex =
547       CurrentLines->empty()
548           ? (UnwrappedLine::kInvalidIndex)
549           : (CurrentLines->size() - 1 - NbPreprocessorDirectives);
550 
551   ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack,
552                                           MustBeDeclaration);
553   if (AddLevel)
554     ++Line->Level;
555   parseLevel(/*HasOpeningBrace=*/true);
556 
557   if (eof())
558     return;
559 
560   if (MacroBlock ? !FormatTok->is(TT_MacroBlockEnd)
561                  : !FormatTok->is(tok::r_brace)) {
562     Line->Level = InitialLevel;
563     FormatTok->BlockKind = BK_Block;
564     return;
565   }
566 
567   size_t PPEndHash = computePPHash();
568 
569   // Munch the closing brace.
570   nextToken(/*LevelDifference=*/AddLevel ? -1 : 0);
571 
572   if (MacroBlock && FormatTok->is(tok::l_paren))
573     parseParens();
574 
575   if (MunchSemi && FormatTok->Tok.is(tok::semi))
576     nextToken();
577   Line->Level = InitialLevel;
578 
579   if (PPStartHash == PPEndHash) {
580     Line->MatchingOpeningBlockLineIndex = OpeningLineIndex;
581     if (OpeningLineIndex != UnwrappedLine::kInvalidIndex) {
582       // Update the opening line to add the forward reference as well
583       (*CurrentLines)[OpeningLineIndex].MatchingClosingBlockLineIndex =
584           CurrentLines->size() - 1;
585     }
586   }
587 }
588 
589 static bool isGoogScope(const UnwrappedLine &Line) {
590   // FIXME: Closure-library specific stuff should not be hard-coded but be
591   // configurable.
592   if (Line.Tokens.size() < 4)
593     return false;
594   auto I = Line.Tokens.begin();
595   if (I->Tok->TokenText != "goog")
596     return false;
597   ++I;
598   if (I->Tok->isNot(tok::period))
599     return false;
600   ++I;
601   if (I->Tok->TokenText != "scope")
602     return false;
603   ++I;
604   return I->Tok->is(tok::l_paren);
605 }
606 
607 static bool isIIFE(const UnwrappedLine &Line,
608                    const AdditionalKeywords &Keywords) {
609   // Look for the start of an immediately invoked anonymous function.
610   // https://en.wikipedia.org/wiki/Immediately-invoked_function_expression
611   // This is commonly done in JavaScript to create a new, anonymous scope.
612   // Example: (function() { ... })()
613   if (Line.Tokens.size() < 3)
614     return false;
615   auto I = Line.Tokens.begin();
616   if (I->Tok->isNot(tok::l_paren))
617     return false;
618   ++I;
619   if (I->Tok->isNot(Keywords.kw_function))
620     return false;
621   ++I;
622   return I->Tok->is(tok::l_paren);
623 }
624 
625 static bool ShouldBreakBeforeBrace(const FormatStyle &Style,
626                                    const FormatToken &InitialToken) {
627   if (InitialToken.is(tok::kw_namespace))
628     return Style.BraceWrapping.AfterNamespace;
629   if (InitialToken.is(tok::kw_class))
630     return Style.BraceWrapping.AfterClass;
631   if (InitialToken.is(tok::kw_union))
632     return Style.BraceWrapping.AfterUnion;
633   if (InitialToken.is(tok::kw_struct))
634     return Style.BraceWrapping.AfterStruct;
635   return false;
636 }
637 
638 void UnwrappedLineParser::parseChildBlock() {
639   FormatTok->BlockKind = BK_Block;
640   nextToken();
641   {
642     bool SkipIndent = (Style.Language == FormatStyle::LK_JavaScript &&
643                        (isGoogScope(*Line) || isIIFE(*Line, Keywords)));
644     ScopedLineState LineState(*this);
645     ScopedDeclarationState DeclarationState(*Line, DeclarationScopeStack,
646                                             /*MustBeDeclaration=*/false);
647     Line->Level += SkipIndent ? 0 : 1;
648     parseLevel(/*HasOpeningBrace=*/true);
649     flushComments(isOnNewLine(*FormatTok));
650     Line->Level -= SkipIndent ? 0 : 1;
651   }
652   nextToken();
653 }
654 
655 void UnwrappedLineParser::parsePPDirective() {
656   assert(FormatTok->Tok.is(tok::hash) && "'#' expected");
657   ScopedMacroState MacroState(*Line, Tokens, FormatTok);
658 
659   nextToken();
660 
661   if (!FormatTok->Tok.getIdentifierInfo()) {
662     parsePPUnknown();
663     return;
664   }
665 
666   switch (FormatTok->Tok.getIdentifierInfo()->getPPKeywordID()) {
667   case tok::pp_define:
668     parsePPDefine();
669     return;
670   case tok::pp_if:
671     parsePPIf(/*IfDef=*/false);
672     break;
673   case tok::pp_ifdef:
674   case tok::pp_ifndef:
675     parsePPIf(/*IfDef=*/true);
676     break;
677   case tok::pp_else:
678     parsePPElse();
679     break;
680   case tok::pp_elif:
681     parsePPElIf();
682     break;
683   case tok::pp_endif:
684     parsePPEndIf();
685     break;
686   default:
687     parsePPUnknown();
688     break;
689   }
690 }
691 
692 void UnwrappedLineParser::conditionalCompilationCondition(bool Unreachable) {
693   size_t Line = CurrentLines->size();
694   if (CurrentLines == &PreprocessorDirectives)
695     Line += Lines.size();
696 
697   if (Unreachable ||
698       (!PPStack.empty() && PPStack.back().Kind == PP_Unreachable))
699     PPStack.push_back({PP_Unreachable, Line});
700   else
701     PPStack.push_back({PP_Conditional, Line});
702 }
703 
704 void UnwrappedLineParser::conditionalCompilationStart(bool Unreachable) {
705   ++PPBranchLevel;
706   assert(PPBranchLevel >= 0 && PPBranchLevel <= (int)PPLevelBranchIndex.size());
707   if (PPBranchLevel == (int)PPLevelBranchIndex.size()) {
708     PPLevelBranchIndex.push_back(0);
709     PPLevelBranchCount.push_back(0);
710   }
711   PPChainBranchIndex.push(0);
712   bool Skip = PPLevelBranchIndex[PPBranchLevel] > 0;
713   conditionalCompilationCondition(Unreachable || Skip);
714 }
715 
716 void UnwrappedLineParser::conditionalCompilationAlternative() {
717   if (!PPStack.empty())
718     PPStack.pop_back();
719   assert(PPBranchLevel < (int)PPLevelBranchIndex.size());
720   if (!PPChainBranchIndex.empty())
721     ++PPChainBranchIndex.top();
722   conditionalCompilationCondition(
723       PPBranchLevel >= 0 && !PPChainBranchIndex.empty() &&
724       PPLevelBranchIndex[PPBranchLevel] != PPChainBranchIndex.top());
725 }
726 
727 void UnwrappedLineParser::conditionalCompilationEnd() {
728   assert(PPBranchLevel < (int)PPLevelBranchIndex.size());
729   if (PPBranchLevel >= 0 && !PPChainBranchIndex.empty()) {
730     if (PPChainBranchIndex.top() + 1 > PPLevelBranchCount[PPBranchLevel]) {
731       PPLevelBranchCount[PPBranchLevel] = PPChainBranchIndex.top() + 1;
732     }
733   }
734   // Guard against #endif's without #if.
735   if (PPBranchLevel > -1)
736     --PPBranchLevel;
737   if (!PPChainBranchIndex.empty())
738     PPChainBranchIndex.pop();
739   if (!PPStack.empty())
740     PPStack.pop_back();
741 }
742 
743 void UnwrappedLineParser::parsePPIf(bool IfDef) {
744   bool IfNDef = FormatTok->is(tok::pp_ifndef);
745   nextToken();
746   bool Unreachable = false;
747   if (!IfDef && (FormatTok->is(tok::kw_false) || FormatTok->TokenText == "0"))
748     Unreachable = true;
749   if (IfDef && !IfNDef && FormatTok->TokenText == "SWIG")
750     Unreachable = true;
751   conditionalCompilationStart(Unreachable);
752   FormatToken *IfCondition = FormatTok;
753   // If there's a #ifndef on the first line, and the only lines before it are
754   // comments, it could be an include guard.
755   bool MaybeIncludeGuard = IfNDef;
756   if (IncludeGuard == IG_Inited && MaybeIncludeGuard)
757     for (auto &Line : Lines) {
758       if (!Line.Tokens.front().Tok->is(tok::comment)) {
759         MaybeIncludeGuard = false;
760         IncludeGuard = IG_Rejected;
761         break;
762       }
763     }
764   --PPBranchLevel;
765   parsePPUnknown();
766   ++PPBranchLevel;
767   if (IncludeGuard == IG_Inited && MaybeIncludeGuard) {
768     IncludeGuard = IG_IfNdefed;
769     IncludeGuardToken = IfCondition;
770   }
771 }
772 
773 void UnwrappedLineParser::parsePPElse() {
774   // If a potential include guard has an #else, it's not an include guard.
775   if (IncludeGuard == IG_Defined && PPBranchLevel == 0)
776     IncludeGuard = IG_Rejected;
777   conditionalCompilationAlternative();
778   if (PPBranchLevel > -1)
779     --PPBranchLevel;
780   parsePPUnknown();
781   ++PPBranchLevel;
782 }
783 
784 void UnwrappedLineParser::parsePPElIf() { parsePPElse(); }
785 
786 void UnwrappedLineParser::parsePPEndIf() {
787   conditionalCompilationEnd();
788   parsePPUnknown();
789   // If the #endif of a potential include guard is the last thing in the file,
790   // then we found an include guard.
791   unsigned TokenPosition = Tokens->getPosition();
792   FormatToken *PeekNext = AllTokens[TokenPosition];
793   if (IncludeGuard == IG_Defined && PPBranchLevel == -1 &&
794       PeekNext->is(tok::eof) &&
795       Style.IndentPPDirectives != FormatStyle::PPDIS_None)
796     IncludeGuard = IG_Found;
797 }
798 
799 void UnwrappedLineParser::parsePPDefine() {
800   nextToken();
801 
802   if (FormatTok->Tok.getKind() != tok::identifier) {
803     IncludeGuard = IG_Rejected;
804     IncludeGuardToken = nullptr;
805     parsePPUnknown();
806     return;
807   }
808 
809   if (IncludeGuard == IG_IfNdefed &&
810       IncludeGuardToken->TokenText == FormatTok->TokenText) {
811     IncludeGuard = IG_Defined;
812     IncludeGuardToken = nullptr;
813     for (auto &Line : Lines) {
814       if (!Line.Tokens.front().Tok->isOneOf(tok::comment, tok::hash)) {
815         IncludeGuard = IG_Rejected;
816         break;
817       }
818     }
819   }
820 
821   nextToken();
822   if (FormatTok->Tok.getKind() == tok::l_paren &&
823       FormatTok->WhitespaceRange.getBegin() ==
824           FormatTok->WhitespaceRange.getEnd()) {
825     parseParens();
826   }
827   if (Style.IndentPPDirectives != FormatStyle::PPDIS_None)
828     Line->Level += PPBranchLevel + 1;
829   addUnwrappedLine();
830   ++Line->Level;
831 
832   // Errors during a preprocessor directive can only affect the layout of the
833   // preprocessor directive, and thus we ignore them. An alternative approach
834   // would be to use the same approach we use on the file level (no
835   // re-indentation if there was a structural error) within the macro
836   // definition.
837   parseFile();
838 }
839 
840 void UnwrappedLineParser::parsePPUnknown() {
841   do {
842     nextToken();
843   } while (!eof());
844   if (Style.IndentPPDirectives != FormatStyle::PPDIS_None)
845     Line->Level += PPBranchLevel + 1;
846   addUnwrappedLine();
847 }
848 
849 // Here we blacklist certain tokens that are not usually the first token in an
850 // unwrapped line. This is used in attempt to distinguish macro calls without
851 // trailing semicolons from other constructs split to several lines.
852 static bool tokenCanStartNewLine(const clang::Token &Tok) {
853   // Semicolon can be a null-statement, l_square can be a start of a macro or
854   // a C++11 attribute, but this doesn't seem to be common.
855   return Tok.isNot(tok::semi) && Tok.isNot(tok::l_brace) &&
856          Tok.isNot(tok::l_square) &&
857          // Tokens that can only be used as binary operators and a part of
858          // overloaded operator names.
859          Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) &&
860          Tok.isNot(tok::arrow) && Tok.isNot(tok::arrowstar) &&
861          Tok.isNot(tok::less) && Tok.isNot(tok::greater) &&
862          Tok.isNot(tok::slash) && Tok.isNot(tok::percent) &&
863          Tok.isNot(tok::lessless) && Tok.isNot(tok::greatergreater) &&
864          Tok.isNot(tok::equal) && Tok.isNot(tok::plusequal) &&
865          Tok.isNot(tok::minusequal) && Tok.isNot(tok::starequal) &&
866          Tok.isNot(tok::slashequal) && Tok.isNot(tok::percentequal) &&
867          Tok.isNot(tok::ampequal) && Tok.isNot(tok::pipeequal) &&
868          Tok.isNot(tok::caretequal) && Tok.isNot(tok::greatergreaterequal) &&
869          Tok.isNot(tok::lesslessequal) &&
870          // Colon is used in labels, base class lists, initializer lists,
871          // range-based for loops, ternary operator, but should never be the
872          // first token in an unwrapped line.
873          Tok.isNot(tok::colon) &&
874          // 'noexcept' is a trailing annotation.
875          Tok.isNot(tok::kw_noexcept);
876 }
877 
878 static bool mustBeJSIdent(const AdditionalKeywords &Keywords,
879                           const FormatToken *FormatTok) {
880   // FIXME: This returns true for C/C++ keywords like 'struct'.
881   return FormatTok->is(tok::identifier) &&
882          (FormatTok->Tok.getIdentifierInfo() == nullptr ||
883           !FormatTok->isOneOf(
884               Keywords.kw_in, Keywords.kw_of, Keywords.kw_as, Keywords.kw_async,
885               Keywords.kw_await, Keywords.kw_yield, Keywords.kw_finally,
886               Keywords.kw_function, Keywords.kw_import, Keywords.kw_is,
887               Keywords.kw_let, Keywords.kw_var, tok::kw_const,
888               Keywords.kw_abstract, Keywords.kw_extends, Keywords.kw_implements,
889               Keywords.kw_instanceof, Keywords.kw_interface, Keywords.kw_throws,
890               Keywords.kw_from));
891 }
892 
893 static bool mustBeJSIdentOrValue(const AdditionalKeywords &Keywords,
894                                  const FormatToken *FormatTok) {
895   return FormatTok->Tok.isLiteral() ||
896          FormatTok->isOneOf(tok::kw_true, tok::kw_false) ||
897          mustBeJSIdent(Keywords, FormatTok);
898 }
899 
900 // isJSDeclOrStmt returns true if |FormatTok| starts a declaration or statement
901 // when encountered after a value (see mustBeJSIdentOrValue).
902 static bool isJSDeclOrStmt(const AdditionalKeywords &Keywords,
903                            const FormatToken *FormatTok) {
904   return FormatTok->isOneOf(
905       tok::kw_return, Keywords.kw_yield,
906       // conditionals
907       tok::kw_if, tok::kw_else,
908       // loops
909       tok::kw_for, tok::kw_while, tok::kw_do, tok::kw_continue, tok::kw_break,
910       // switch/case
911       tok::kw_switch, tok::kw_case,
912       // exceptions
913       tok::kw_throw, tok::kw_try, tok::kw_catch, Keywords.kw_finally,
914       // declaration
915       tok::kw_const, tok::kw_class, Keywords.kw_var, Keywords.kw_let,
916       Keywords.kw_async, Keywords.kw_function,
917       // import/export
918       Keywords.kw_import, tok::kw_export);
919 }
920 
921 // readTokenWithJavaScriptASI reads the next token and terminates the current
922 // line if JavaScript Automatic Semicolon Insertion must
923 // happen between the current token and the next token.
924 //
925 // This method is conservative - it cannot cover all edge cases of JavaScript,
926 // but only aims to correctly handle certain well known cases. It *must not*
927 // return true in speculative cases.
928 void UnwrappedLineParser::readTokenWithJavaScriptASI() {
929   FormatToken *Previous = FormatTok;
930   readToken();
931   FormatToken *Next = FormatTok;
932 
933   bool IsOnSameLine =
934       CommentsBeforeNextToken.empty()
935           ? Next->NewlinesBefore == 0
936           : CommentsBeforeNextToken.front()->NewlinesBefore == 0;
937   if (IsOnSameLine)
938     return;
939 
940   bool PreviousMustBeValue = mustBeJSIdentOrValue(Keywords, Previous);
941   bool PreviousStartsTemplateExpr =
942       Previous->is(TT_TemplateString) && Previous->TokenText.endswith("${");
943   if (PreviousMustBeValue || Previous->is(tok::r_paren)) {
944     // If the line contains an '@' sign, the previous token might be an
945     // annotation, which can precede another identifier/value.
946     bool HasAt = std::find_if(Line->Tokens.begin(), Line->Tokens.end(),
947                               [](UnwrappedLineNode &LineNode) {
948                                 return LineNode.Tok->is(tok::at);
949                               }) != Line->Tokens.end();
950     if (HasAt)
951       return;
952   }
953   if (Next->is(tok::exclaim) && PreviousMustBeValue)
954     return addUnwrappedLine();
955   bool NextMustBeValue = mustBeJSIdentOrValue(Keywords, Next);
956   bool NextEndsTemplateExpr =
957       Next->is(TT_TemplateString) && Next->TokenText.startswith("}");
958   if (NextMustBeValue && !NextEndsTemplateExpr && !PreviousStartsTemplateExpr &&
959       (PreviousMustBeValue ||
960        Previous->isOneOf(tok::r_square, tok::r_paren, tok::plusplus,
961                          tok::minusminus)))
962     return addUnwrappedLine();
963   if ((PreviousMustBeValue || Previous->is(tok::r_paren)) &&
964       isJSDeclOrStmt(Keywords, Next))
965     return addUnwrappedLine();
966 }
967 
968 void UnwrappedLineParser::parseStructuralElement() {
969   assert(!FormatTok->is(tok::l_brace));
970   if (Style.Language == FormatStyle::LK_TableGen &&
971       FormatTok->is(tok::pp_include)) {
972     nextToken();
973     if (FormatTok->is(tok::string_literal))
974       nextToken();
975     addUnwrappedLine();
976     return;
977   }
978   switch (FormatTok->Tok.getKind()) {
979   case tok::kw_asm:
980     nextToken();
981     if (FormatTok->is(tok::l_brace)) {
982       FormatTok->Type = TT_InlineASMBrace;
983       nextToken();
984       while (FormatTok && FormatTok->isNot(tok::eof)) {
985         if (FormatTok->is(tok::r_brace)) {
986           FormatTok->Type = TT_InlineASMBrace;
987           nextToken();
988           addUnwrappedLine();
989           break;
990         }
991         FormatTok->Finalized = true;
992         nextToken();
993       }
994     }
995     break;
996   case tok::kw_namespace:
997     parseNamespace();
998     return;
999   case tok::kw_public:
1000   case tok::kw_protected:
1001   case tok::kw_private:
1002     if (Style.Language == FormatStyle::LK_Java ||
1003         Style.Language == FormatStyle::LK_JavaScript || Style.isCSharp())
1004       nextToken();
1005     else
1006       parseAccessSpecifier();
1007     return;
1008   case tok::kw_if:
1009     parseIfThenElse();
1010     return;
1011   case tok::kw_for:
1012   case tok::kw_while:
1013     parseForOrWhileLoop();
1014     return;
1015   case tok::kw_do:
1016     parseDoWhile();
1017     return;
1018   case tok::kw_switch:
1019     if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration)
1020       // 'switch: string' field declaration.
1021       break;
1022     parseSwitch();
1023     return;
1024   case tok::kw_default:
1025     if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration)
1026       // 'default: string' field declaration.
1027       break;
1028     nextToken();
1029     if (FormatTok->is(tok::colon)) {
1030       parseLabel();
1031       return;
1032     }
1033     // e.g. "default void f() {}" in a Java interface.
1034     break;
1035   case tok::kw_case:
1036     if (Style.Language == FormatStyle::LK_JavaScript && Line->MustBeDeclaration)
1037       // 'case: string' field declaration.
1038       break;
1039     parseCaseLabel();
1040     return;
1041   case tok::kw_try:
1042   case tok::kw___try:
1043     parseTryCatch();
1044     return;
1045   case tok::kw_extern:
1046     nextToken();
1047     if (FormatTok->Tok.is(tok::string_literal)) {
1048       nextToken();
1049       if (FormatTok->Tok.is(tok::l_brace)) {
1050         if (Style.BraceWrapping.AfterExternBlock) {
1051           addUnwrappedLine();
1052           parseBlock(/*MustBeDeclaration=*/true);
1053         } else {
1054           parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/false);
1055         }
1056         addUnwrappedLine();
1057         return;
1058       }
1059     }
1060     break;
1061   case tok::kw_export:
1062     if (Style.Language == FormatStyle::LK_JavaScript) {
1063       parseJavaScriptEs6ImportExport();
1064       return;
1065     }
1066     if (!Style.isCpp())
1067       break;
1068     // Handle C++ "(inline|export) namespace".
1069     LLVM_FALLTHROUGH;
1070   case tok::kw_inline:
1071     nextToken();
1072     if (FormatTok->Tok.is(tok::kw_namespace)) {
1073       parseNamespace();
1074       return;
1075     }
1076     break;
1077   case tok::identifier:
1078     if (FormatTok->is(TT_ForEachMacro)) {
1079       parseForOrWhileLoop();
1080       return;
1081     }
1082     if (FormatTok->is(TT_MacroBlockBegin)) {
1083       parseBlock(/*MustBeDeclaration=*/false, /*AddLevel=*/true,
1084                  /*MunchSemi=*/false);
1085       return;
1086     }
1087     if (FormatTok->is(Keywords.kw_import)) {
1088       if (Style.Language == FormatStyle::LK_JavaScript) {
1089         parseJavaScriptEs6ImportExport();
1090         return;
1091       }
1092       if (Style.Language == FormatStyle::LK_Proto) {
1093         nextToken();
1094         if (FormatTok->is(tok::kw_public))
1095           nextToken();
1096         if (!FormatTok->is(tok::string_literal))
1097           return;
1098         nextToken();
1099         if (FormatTok->is(tok::semi))
1100           nextToken();
1101         addUnwrappedLine();
1102         return;
1103       }
1104     }
1105     if (Style.isCpp() &&
1106         FormatTok->isOneOf(Keywords.kw_signals, Keywords.kw_qsignals,
1107                            Keywords.kw_slots, Keywords.kw_qslots)) {
1108       nextToken();
1109       if (FormatTok->is(tok::colon)) {
1110         nextToken();
1111         addUnwrappedLine();
1112         return;
1113       }
1114     }
1115     if (Style.isCpp() && FormatTok->is(TT_StatementMacro)) {
1116       parseStatementMacro();
1117       return;
1118     }
1119     // In all other cases, parse the declaration.
1120     break;
1121   default:
1122     break;
1123   }
1124   do {
1125     const FormatToken *Previous = FormatTok->Previous;
1126     switch (FormatTok->Tok.getKind()) {
1127     case tok::at:
1128       nextToken();
1129       if (FormatTok->Tok.is(tok::l_brace)) {
1130         nextToken();
1131         parseBracedList();
1132         break;
1133       } else if (Style.Language == FormatStyle::LK_Java &&
1134                  FormatTok->is(Keywords.kw_interface)) {
1135         nextToken();
1136         break;
1137       }
1138       switch (FormatTok->Tok.getObjCKeywordID()) {
1139       case tok::objc_public:
1140       case tok::objc_protected:
1141       case tok::objc_package:
1142       case tok::objc_private:
1143         return parseAccessSpecifier();
1144       case tok::objc_interface:
1145       case tok::objc_implementation:
1146         return parseObjCInterfaceOrImplementation();
1147       case tok::objc_protocol:
1148         if (parseObjCProtocol())
1149           return;
1150         break;
1151       case tok::objc_end:
1152         return; // Handled by the caller.
1153       case tok::objc_optional:
1154       case tok::objc_required:
1155         nextToken();
1156         addUnwrappedLine();
1157         return;
1158       case tok::objc_autoreleasepool:
1159         nextToken();
1160         if (FormatTok->Tok.is(tok::l_brace)) {
1161           if (Style.BraceWrapping.AfterControlStatement)
1162             addUnwrappedLine();
1163           parseBlock(/*MustBeDeclaration=*/false);
1164         }
1165         addUnwrappedLine();
1166         return;
1167       case tok::objc_synchronized:
1168         nextToken();
1169         if (FormatTok->Tok.is(tok::l_paren))
1170           // Skip synchronization object
1171           parseParens();
1172         if (FormatTok->Tok.is(tok::l_brace)) {
1173           if (Style.BraceWrapping.AfterControlStatement)
1174             addUnwrappedLine();
1175           parseBlock(/*MustBeDeclaration=*/false);
1176         }
1177         addUnwrappedLine();
1178         return;
1179       case tok::objc_try:
1180         // This branch isn't strictly necessary (the kw_try case below would
1181         // do this too after the tok::at is parsed above).  But be explicit.
1182         parseTryCatch();
1183         return;
1184       default:
1185         break;
1186       }
1187       break;
1188     case tok::kw_enum:
1189       // Ignore if this is part of "template <enum ...".
1190       if (Previous && Previous->is(tok::less)) {
1191         nextToken();
1192         break;
1193       }
1194 
1195       // parseEnum falls through and does not yet add an unwrapped line as an
1196       // enum definition can start a structural element.
1197       if (!parseEnum())
1198         break;
1199       // This only applies for C++.
1200       if (!Style.isCpp()) {
1201         addUnwrappedLine();
1202         return;
1203       }
1204       break;
1205     case tok::kw_typedef:
1206       nextToken();
1207       if (FormatTok->isOneOf(Keywords.kw_NS_ENUM, Keywords.kw_NS_OPTIONS,
1208                              Keywords.kw_CF_ENUM, Keywords.kw_CF_OPTIONS))
1209         parseEnum();
1210       break;
1211     case tok::kw_struct:
1212     case tok::kw_union:
1213     case tok::kw_class:
1214       // parseRecord falls through and does not yet add an unwrapped line as a
1215       // record declaration or definition can start a structural element.
1216       parseRecord();
1217       // This does not apply for Java, JavaScript and C#.
1218       if (Style.Language == FormatStyle::LK_Java ||
1219           Style.Language == FormatStyle::LK_JavaScript || Style.isCSharp()) {
1220         if (FormatTok->is(tok::semi))
1221           nextToken();
1222         addUnwrappedLine();
1223         return;
1224       }
1225       break;
1226     case tok::period:
1227       nextToken();
1228       // In Java, classes have an implicit static member "class".
1229       if (Style.Language == FormatStyle::LK_Java && FormatTok &&
1230           FormatTok->is(tok::kw_class))
1231         nextToken();
1232       if (Style.Language == FormatStyle::LK_JavaScript && FormatTok &&
1233           FormatTok->Tok.getIdentifierInfo())
1234         // JavaScript only has pseudo keywords, all keywords are allowed to
1235         // appear in "IdentifierName" positions. See http://es5.github.io/#x7.6
1236         nextToken();
1237       break;
1238     case tok::semi:
1239       nextToken();
1240       addUnwrappedLine();
1241       return;
1242     case tok::r_brace:
1243       addUnwrappedLine();
1244       return;
1245     case tok::l_paren:
1246       parseParens();
1247       break;
1248     case tok::kw_operator:
1249       nextToken();
1250       if (FormatTok->isBinaryOperator())
1251         nextToken();
1252       break;
1253     case tok::caret:
1254       nextToken();
1255       if (FormatTok->Tok.isAnyIdentifier() ||
1256           FormatTok->isSimpleTypeSpecifier())
1257         nextToken();
1258       if (FormatTok->is(tok::l_paren))
1259         parseParens();
1260       if (FormatTok->is(tok::l_brace))
1261         parseChildBlock();
1262       break;
1263     case tok::l_brace:
1264       if (!tryToParseBracedList()) {
1265         // A block outside of parentheses must be the last part of a
1266         // structural element.
1267         // FIXME: Figure out cases where this is not true, and add projections
1268         // for them (the one we know is missing are lambdas).
1269         if (Style.BraceWrapping.AfterFunction)
1270           addUnwrappedLine();
1271         FormatTok->Type = TT_FunctionLBrace;
1272         parseBlock(/*MustBeDeclaration=*/false);
1273         addUnwrappedLine();
1274         return;
1275       }
1276       // Otherwise this was a braced init list, and the structural
1277       // element continues.
1278       break;
1279     case tok::kw_try:
1280       // We arrive here when parsing function-try blocks.
1281       if (Style.BraceWrapping.AfterFunction)
1282         addUnwrappedLine();
1283       parseTryCatch();
1284       return;
1285     case tok::identifier: {
1286       if (FormatTok->is(TT_MacroBlockEnd)) {
1287         addUnwrappedLine();
1288         return;
1289       }
1290 
1291       // Function declarations (as opposed to function expressions) are parsed
1292       // on their own unwrapped line by continuing this loop. Function
1293       // expressions (functions that are not on their own line) must not create
1294       // a new unwrapped line, so they are special cased below.
1295       size_t TokenCount = Line->Tokens.size();
1296       if (Style.Language == FormatStyle::LK_JavaScript &&
1297           FormatTok->is(Keywords.kw_function) &&
1298           (TokenCount > 1 || (TokenCount == 1 && !Line->Tokens.front().Tok->is(
1299                                                      Keywords.kw_async)))) {
1300         tryToParseJSFunction();
1301         break;
1302       }
1303       if ((Style.Language == FormatStyle::LK_JavaScript ||
1304            Style.Language == FormatStyle::LK_Java) &&
1305           FormatTok->is(Keywords.kw_interface)) {
1306         if (Style.Language == FormatStyle::LK_JavaScript) {
1307           // In JavaScript/TypeScript, "interface" can be used as a standalone
1308           // identifier, e.g. in `var interface = 1;`. If "interface" is
1309           // followed by another identifier, it is very like to be an actual
1310           // interface declaration.
1311           unsigned StoredPosition = Tokens->getPosition();
1312           FormatToken *Next = Tokens->getNextToken();
1313           FormatTok = Tokens->setPosition(StoredPosition);
1314           if (Next && !mustBeJSIdent(Keywords, Next)) {
1315             nextToken();
1316             break;
1317           }
1318         }
1319         parseRecord();
1320         addUnwrappedLine();
1321         return;
1322       }
1323 
1324       if (Style.isCpp() && FormatTok->is(TT_StatementMacro)) {
1325         parseStatementMacro();
1326         return;
1327       }
1328 
1329       // See if the following token should start a new unwrapped line.
1330       StringRef Text = FormatTok->TokenText;
1331       nextToken();
1332       if (Line->Tokens.size() == 1 &&
1333           // JS doesn't have macros, and within classes colons indicate fields,
1334           // not labels.
1335           Style.Language != FormatStyle::LK_JavaScript) {
1336         if (FormatTok->Tok.is(tok::colon) && !Line->MustBeDeclaration) {
1337           Line->Tokens.begin()->Tok->MustBreakBefore = true;
1338           parseLabel();
1339           return;
1340         }
1341         // Recognize function-like macro usages without trailing semicolon as
1342         // well as free-standing macros like Q_OBJECT.
1343         bool FunctionLike = FormatTok->is(tok::l_paren);
1344         if (FunctionLike)
1345           parseParens();
1346 
1347         bool FollowedByNewline =
1348             CommentsBeforeNextToken.empty()
1349                 ? FormatTok->NewlinesBefore > 0
1350                 : CommentsBeforeNextToken.front()->NewlinesBefore > 0;
1351 
1352         if (FollowedByNewline && (Text.size() >= 5 || FunctionLike) &&
1353             tokenCanStartNewLine(FormatTok->Tok) && Text == Text.upper()) {
1354           addUnwrappedLine();
1355           return;
1356         }
1357       }
1358       break;
1359     }
1360     case tok::equal:
1361       // Fat arrows (=>) have tok::TokenKind tok::equal but TokenType
1362       // TT_JsFatArrow. The always start an expression or a child block if
1363       // followed by a curly.
1364       if (FormatTok->is(TT_JsFatArrow)) {
1365         nextToken();
1366         if (FormatTok->is(tok::l_brace))
1367           parseChildBlock();
1368         break;
1369       }
1370 
1371       nextToken();
1372       if (FormatTok->Tok.is(tok::l_brace)) {
1373         nextToken();
1374         parseBracedList();
1375       } else if (Style.Language == FormatStyle::LK_Proto &&
1376                  FormatTok->Tok.is(tok::less)) {
1377         nextToken();
1378         parseBracedList(/*ContinueOnSemicolons=*/false,
1379                         /*ClosingBraceKind=*/tok::greater);
1380       }
1381       break;
1382     case tok::l_square:
1383       parseSquare();
1384       break;
1385     case tok::kw_new:
1386       parseNew();
1387       break;
1388     default:
1389       nextToken();
1390       break;
1391     }
1392   } while (!eof());
1393 }
1394 
1395 bool UnwrappedLineParser::tryToParseLambda() {
1396   if (!Style.isCpp()) {
1397     nextToken();
1398     return false;
1399   }
1400   assert(FormatTok->is(tok::l_square));
1401   FormatToken &LSquare = *FormatTok;
1402   if (!tryToParseLambdaIntroducer())
1403     return false;
1404 
1405   bool SeenArrow = false;
1406 
1407   while (FormatTok->isNot(tok::l_brace)) {
1408     if (FormatTok->isSimpleTypeSpecifier()) {
1409       nextToken();
1410       continue;
1411     }
1412     switch (FormatTok->Tok.getKind()) {
1413     case tok::l_brace:
1414       break;
1415     case tok::l_paren:
1416       parseParens();
1417       break;
1418     case tok::amp:
1419     case tok::star:
1420     case tok::kw_const:
1421     case tok::comma:
1422     case tok::less:
1423     case tok::greater:
1424     case tok::identifier:
1425     case tok::numeric_constant:
1426     case tok::coloncolon:
1427     case tok::kw_mutable:
1428     case tok::kw_noexcept:
1429       nextToken();
1430       break;
1431     // Specialization of a template with an integer parameter can contain
1432     // arithmetic, logical, comparison and ternary operators.
1433     //
1434     // FIXME: This also accepts sequences of operators that are not in the scope
1435     // of a template argument list.
1436     //
1437     // In a C++ lambda a template type can only occur after an arrow. We use
1438     // this as an heuristic to distinguish between Objective-C expressions
1439     // followed by an `a->b` expression, such as:
1440     // ([obj func:arg] + a->b)
1441     // Otherwise the code below would parse as a lambda.
1442     case tok::plus:
1443     case tok::minus:
1444     case tok::exclaim:
1445     case tok::tilde:
1446     case tok::slash:
1447     case tok::percent:
1448     case tok::lessless:
1449     case tok::pipe:
1450     case tok::pipepipe:
1451     case tok::ampamp:
1452     case tok::caret:
1453     case tok::equalequal:
1454     case tok::exclaimequal:
1455     case tok::greaterequal:
1456     case tok::lessequal:
1457     case tok::question:
1458     case tok::colon:
1459     case tok::kw_true:
1460     case tok::kw_false:
1461       if (SeenArrow) {
1462         nextToken();
1463         break;
1464       }
1465       return true;
1466     case tok::arrow:
1467       // This might or might not actually be a lambda arrow (this could be an
1468       // ObjC method invocation followed by a dereferencing arrow). We might
1469       // reset this back to TT_Unknown in TokenAnnotator.
1470       FormatTok->Type = TT_LambdaArrow;
1471       SeenArrow = true;
1472       nextToken();
1473       break;
1474     default:
1475       return true;
1476     }
1477   }
1478   LSquare.Type = TT_LambdaLSquare;
1479   parseChildBlock();
1480   return true;
1481 }
1482 
1483 bool UnwrappedLineParser::tryToParseLambdaIntroducer() {
1484   const FormatToken *Previous = FormatTok->Previous;
1485   if (Previous &&
1486       (Previous->isOneOf(tok::identifier, tok::kw_operator, tok::kw_new,
1487                          tok::kw_delete, tok::l_square) ||
1488        FormatTok->isCppStructuredBinding(Style) || Previous->closesScope() ||
1489        Previous->isSimpleTypeSpecifier())) {
1490     nextToken();
1491     return false;
1492   }
1493   nextToken();
1494   if (FormatTok->is(tok::l_square)) {
1495     return false;
1496   }
1497   parseSquare(/*LambdaIntroducer=*/true);
1498   return true;
1499 }
1500 
1501 void UnwrappedLineParser::tryToParseJSFunction() {
1502   assert(FormatTok->is(Keywords.kw_function) ||
1503          FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function));
1504   if (FormatTok->is(Keywords.kw_async))
1505     nextToken();
1506   // Consume "function".
1507   nextToken();
1508 
1509   // Consume * (generator function). Treat it like C++'s overloaded operators.
1510   if (FormatTok->is(tok::star)) {
1511     FormatTok->Type = TT_OverloadedOperator;
1512     nextToken();
1513   }
1514 
1515   // Consume function name.
1516   if (FormatTok->is(tok::identifier))
1517     nextToken();
1518 
1519   if (FormatTok->isNot(tok::l_paren))
1520     return;
1521 
1522   // Parse formal parameter list.
1523   parseParens();
1524 
1525   if (FormatTok->is(tok::colon)) {
1526     // Parse a type definition.
1527     nextToken();
1528 
1529     // Eat the type declaration. For braced inline object types, balance braces,
1530     // otherwise just parse until finding an l_brace for the function body.
1531     if (FormatTok->is(tok::l_brace))
1532       tryToParseBracedList();
1533     else
1534       while (!FormatTok->isOneOf(tok::l_brace, tok::semi) && !eof())
1535         nextToken();
1536   }
1537 
1538   if (FormatTok->is(tok::semi))
1539     return;
1540 
1541   parseChildBlock();
1542 }
1543 
1544 bool UnwrappedLineParser::tryToParseBracedList() {
1545   if (FormatTok->BlockKind == BK_Unknown)
1546     calculateBraceTypes();
1547   assert(FormatTok->BlockKind != BK_Unknown);
1548   if (FormatTok->BlockKind == BK_Block)
1549     return false;
1550   nextToken();
1551   parseBracedList();
1552   return true;
1553 }
1554 
1555 bool UnwrappedLineParser::parseBracedList(bool ContinueOnSemicolons,
1556                                           tok::TokenKind ClosingBraceKind) {
1557   bool HasError = false;
1558 
1559   // FIXME: Once we have an expression parser in the UnwrappedLineParser,
1560   // replace this by using parseAssigmentExpression() inside.
1561   do {
1562     if (Style.Language == FormatStyle::LK_JavaScript) {
1563       if (FormatTok->is(Keywords.kw_function) ||
1564           FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function)) {
1565         tryToParseJSFunction();
1566         continue;
1567       }
1568       if (FormatTok->is(TT_JsFatArrow)) {
1569         nextToken();
1570         // Fat arrows can be followed by simple expressions or by child blocks
1571         // in curly braces.
1572         if (FormatTok->is(tok::l_brace)) {
1573           parseChildBlock();
1574           continue;
1575         }
1576       }
1577       if (FormatTok->is(tok::l_brace)) {
1578         // Could be a method inside of a braced list `{a() { return 1; }}`.
1579         if (tryToParseBracedList())
1580           continue;
1581         parseChildBlock();
1582       }
1583     }
1584     if (FormatTok->Tok.getKind() == ClosingBraceKind) {
1585       nextToken();
1586       return !HasError;
1587     }
1588     switch (FormatTok->Tok.getKind()) {
1589     case tok::caret:
1590       nextToken();
1591       if (FormatTok->is(tok::l_brace)) {
1592         parseChildBlock();
1593       }
1594       break;
1595     case tok::l_square:
1596       tryToParseLambda();
1597       break;
1598     case tok::l_paren:
1599       parseParens();
1600       // JavaScript can just have free standing methods and getters/setters in
1601       // object literals. Detect them by a "{" following ")".
1602       if (Style.Language == FormatStyle::LK_JavaScript) {
1603         if (FormatTok->is(tok::l_brace))
1604           parseChildBlock();
1605         break;
1606       }
1607       break;
1608     case tok::l_brace:
1609       // Assume there are no blocks inside a braced init list apart
1610       // from the ones we explicitly parse out (like lambdas).
1611       FormatTok->BlockKind = BK_BracedInit;
1612       nextToken();
1613       parseBracedList();
1614       break;
1615     case tok::less:
1616       if (Style.Language == FormatStyle::LK_Proto) {
1617         nextToken();
1618         parseBracedList(/*ContinueOnSemicolons=*/false,
1619                         /*ClosingBraceKind=*/tok::greater);
1620       } else {
1621         nextToken();
1622       }
1623       break;
1624     case tok::semi:
1625       // JavaScript (or more precisely TypeScript) can have semicolons in braced
1626       // lists (in so-called TypeMemberLists). Thus, the semicolon cannot be
1627       // used for error recovery if we have otherwise determined that this is
1628       // a braced list.
1629       if (Style.Language == FormatStyle::LK_JavaScript) {
1630         nextToken();
1631         break;
1632       }
1633       HasError = true;
1634       if (!ContinueOnSemicolons)
1635         return !HasError;
1636       nextToken();
1637       break;
1638     case tok::comma:
1639       nextToken();
1640       break;
1641     default:
1642       nextToken();
1643       break;
1644     }
1645   } while (!eof());
1646   return false;
1647 }
1648 
1649 void UnwrappedLineParser::parseParens() {
1650   assert(FormatTok->Tok.is(tok::l_paren) && "'(' expected.");
1651   nextToken();
1652   do {
1653     switch (FormatTok->Tok.getKind()) {
1654     case tok::l_paren:
1655       parseParens();
1656       if (Style.Language == FormatStyle::LK_Java && FormatTok->is(tok::l_brace))
1657         parseChildBlock();
1658       break;
1659     case tok::r_paren:
1660       nextToken();
1661       return;
1662     case tok::r_brace:
1663       // A "}" inside parenthesis is an error if there wasn't a matching "{".
1664       return;
1665     case tok::l_square:
1666       tryToParseLambda();
1667       break;
1668     case tok::l_brace:
1669       if (!tryToParseBracedList())
1670         parseChildBlock();
1671       break;
1672     case tok::at:
1673       nextToken();
1674       if (FormatTok->Tok.is(tok::l_brace)) {
1675         nextToken();
1676         parseBracedList();
1677       }
1678       break;
1679     case tok::kw_class:
1680       if (Style.Language == FormatStyle::LK_JavaScript)
1681         parseRecord(/*ParseAsExpr=*/true);
1682       else
1683         nextToken();
1684       break;
1685     case tok::identifier:
1686       if (Style.Language == FormatStyle::LK_JavaScript &&
1687           (FormatTok->is(Keywords.kw_function) ||
1688            FormatTok->startsSequence(Keywords.kw_async, Keywords.kw_function)))
1689         tryToParseJSFunction();
1690       else
1691         nextToken();
1692       break;
1693     default:
1694       nextToken();
1695       break;
1696     }
1697   } while (!eof());
1698 }
1699 
1700 void UnwrappedLineParser::parseSquare(bool LambdaIntroducer) {
1701   if (!LambdaIntroducer) {
1702     assert(FormatTok->Tok.is(tok::l_square) && "'[' expected.");
1703     if (tryToParseLambda())
1704       return;
1705   }
1706   do {
1707     switch (FormatTok->Tok.getKind()) {
1708     case tok::l_paren:
1709       parseParens();
1710       break;
1711     case tok::r_square:
1712       nextToken();
1713       return;
1714     case tok::r_brace:
1715       // A "}" inside parenthesis is an error if there wasn't a matching "{".
1716       return;
1717     case tok::l_square:
1718       parseSquare();
1719       break;
1720     case tok::l_brace: {
1721       if (!tryToParseBracedList())
1722         parseChildBlock();
1723       break;
1724     }
1725     case tok::at:
1726       nextToken();
1727       if (FormatTok->Tok.is(tok::l_brace)) {
1728         nextToken();
1729         parseBracedList();
1730       }
1731       break;
1732     default:
1733       nextToken();
1734       break;
1735     }
1736   } while (!eof());
1737 }
1738 
1739 void UnwrappedLineParser::parseIfThenElse() {
1740   assert(FormatTok->Tok.is(tok::kw_if) && "'if' expected");
1741   nextToken();
1742   if (FormatTok->Tok.is(tok::kw_constexpr))
1743     nextToken();
1744   if (FormatTok->Tok.is(tok::l_paren))
1745     parseParens();
1746   bool NeedsUnwrappedLine = false;
1747   if (FormatTok->Tok.is(tok::l_brace)) {
1748     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1749     parseBlock(/*MustBeDeclaration=*/false);
1750     if (Style.BraceWrapping.BeforeElse)
1751       addUnwrappedLine();
1752     else
1753       NeedsUnwrappedLine = true;
1754   } else {
1755     addUnwrappedLine();
1756     ++Line->Level;
1757     parseStructuralElement();
1758     --Line->Level;
1759   }
1760   if (FormatTok->Tok.is(tok::kw_else)) {
1761     nextToken();
1762     if (FormatTok->Tok.is(tok::l_brace)) {
1763       CompoundStatementIndenter Indenter(this, Style, Line->Level);
1764       parseBlock(/*MustBeDeclaration=*/false);
1765       addUnwrappedLine();
1766     } else if (FormatTok->Tok.is(tok::kw_if)) {
1767       parseIfThenElse();
1768     } else {
1769       addUnwrappedLine();
1770       ++Line->Level;
1771       parseStructuralElement();
1772       if (FormatTok->is(tok::eof))
1773         addUnwrappedLine();
1774       --Line->Level;
1775     }
1776   } else if (NeedsUnwrappedLine) {
1777     addUnwrappedLine();
1778   }
1779 }
1780 
1781 void UnwrappedLineParser::parseTryCatch() {
1782   assert(FormatTok->isOneOf(tok::kw_try, tok::kw___try) && "'try' expected");
1783   nextToken();
1784   bool NeedsUnwrappedLine = false;
1785   if (FormatTok->is(tok::colon)) {
1786     // We are in a function try block, what comes is an initializer list.
1787     nextToken();
1788     while (FormatTok->is(tok::identifier)) {
1789       nextToken();
1790       if (FormatTok->is(tok::l_paren))
1791         parseParens();
1792       if (FormatTok->is(tok::comma))
1793         nextToken();
1794     }
1795   }
1796   // Parse try with resource.
1797   if (Style.Language == FormatStyle::LK_Java && FormatTok->is(tok::l_paren)) {
1798     parseParens();
1799   }
1800   if (FormatTok->is(tok::l_brace)) {
1801     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1802     parseBlock(/*MustBeDeclaration=*/false);
1803     if (Style.BraceWrapping.BeforeCatch) {
1804       addUnwrappedLine();
1805     } else {
1806       NeedsUnwrappedLine = true;
1807     }
1808   } else if (!FormatTok->is(tok::kw_catch)) {
1809     // The C++ standard requires a compound-statement after a try.
1810     // If there's none, we try to assume there's a structuralElement
1811     // and try to continue.
1812     addUnwrappedLine();
1813     ++Line->Level;
1814     parseStructuralElement();
1815     --Line->Level;
1816   }
1817   while (1) {
1818     if (FormatTok->is(tok::at))
1819       nextToken();
1820     if (!(FormatTok->isOneOf(tok::kw_catch, Keywords.kw___except,
1821                              tok::kw___finally) ||
1822           ((Style.Language == FormatStyle::LK_Java ||
1823             Style.Language == FormatStyle::LK_JavaScript) &&
1824            FormatTok->is(Keywords.kw_finally)) ||
1825           (FormatTok->Tok.isObjCAtKeyword(tok::objc_catch) ||
1826            FormatTok->Tok.isObjCAtKeyword(tok::objc_finally))))
1827       break;
1828     nextToken();
1829     while (FormatTok->isNot(tok::l_brace)) {
1830       if (FormatTok->is(tok::l_paren)) {
1831         parseParens();
1832         continue;
1833       }
1834       if (FormatTok->isOneOf(tok::semi, tok::r_brace, tok::eof))
1835         return;
1836       nextToken();
1837     }
1838     NeedsUnwrappedLine = false;
1839     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1840     parseBlock(/*MustBeDeclaration=*/false);
1841     if (Style.BraceWrapping.BeforeCatch)
1842       addUnwrappedLine();
1843     else
1844       NeedsUnwrappedLine = true;
1845   }
1846   if (NeedsUnwrappedLine)
1847     addUnwrappedLine();
1848 }
1849 
1850 void UnwrappedLineParser::parseNamespace() {
1851   assert(FormatTok->Tok.is(tok::kw_namespace) && "'namespace' expected");
1852 
1853   const FormatToken &InitialToken = *FormatTok;
1854   nextToken();
1855   while (FormatTok->isOneOf(tok::identifier, tok::coloncolon))
1856     nextToken();
1857   if (FormatTok->Tok.is(tok::l_brace)) {
1858     if (ShouldBreakBeforeBrace(Style, InitialToken))
1859       addUnwrappedLine();
1860 
1861     bool AddLevel = Style.NamespaceIndentation == FormatStyle::NI_All ||
1862                     (Style.NamespaceIndentation == FormatStyle::NI_Inner &&
1863                      DeclarationScopeStack.size() > 1);
1864     parseBlock(/*MustBeDeclaration=*/true, AddLevel);
1865     // Munch the semicolon after a namespace. This is more common than one would
1866     // think. Puttin the semicolon into its own line is very ugly.
1867     if (FormatTok->Tok.is(tok::semi))
1868       nextToken();
1869     addUnwrappedLine();
1870   }
1871   // FIXME: Add error handling.
1872 }
1873 
1874 void UnwrappedLineParser::parseNew() {
1875   assert(FormatTok->is(tok::kw_new) && "'new' expected");
1876   nextToken();
1877   if (Style.Language != FormatStyle::LK_Java)
1878     return;
1879 
1880   // In Java, we can parse everything up to the parens, which aren't optional.
1881   do {
1882     // There should not be a ;, { or } before the new's open paren.
1883     if (FormatTok->isOneOf(tok::semi, tok::l_brace, tok::r_brace))
1884       return;
1885 
1886     // Consume the parens.
1887     if (FormatTok->is(tok::l_paren)) {
1888       parseParens();
1889 
1890       // If there is a class body of an anonymous class, consume that as child.
1891       if (FormatTok->is(tok::l_brace))
1892         parseChildBlock();
1893       return;
1894     }
1895     nextToken();
1896   } while (!eof());
1897 }
1898 
1899 void UnwrappedLineParser::parseForOrWhileLoop() {
1900   assert(FormatTok->isOneOf(tok::kw_for, tok::kw_while, TT_ForEachMacro) &&
1901          "'for', 'while' or foreach macro expected");
1902   nextToken();
1903   // JS' for await ( ...
1904   if (Style.Language == FormatStyle::LK_JavaScript &&
1905       FormatTok->is(Keywords.kw_await))
1906     nextToken();
1907   if (FormatTok->Tok.is(tok::l_paren))
1908     parseParens();
1909   if (FormatTok->Tok.is(tok::l_brace)) {
1910     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1911     parseBlock(/*MustBeDeclaration=*/false);
1912     addUnwrappedLine();
1913   } else {
1914     addUnwrappedLine();
1915     ++Line->Level;
1916     parseStructuralElement();
1917     --Line->Level;
1918   }
1919 }
1920 
1921 void UnwrappedLineParser::parseDoWhile() {
1922   assert(FormatTok->Tok.is(tok::kw_do) && "'do' expected");
1923   nextToken();
1924   if (FormatTok->Tok.is(tok::l_brace)) {
1925     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1926     parseBlock(/*MustBeDeclaration=*/false);
1927     if (Style.BraceWrapping.IndentBraces)
1928       addUnwrappedLine();
1929   } else {
1930     addUnwrappedLine();
1931     ++Line->Level;
1932     parseStructuralElement();
1933     --Line->Level;
1934   }
1935 
1936   // FIXME: Add error handling.
1937   if (!FormatTok->Tok.is(tok::kw_while)) {
1938     addUnwrappedLine();
1939     return;
1940   }
1941 
1942   nextToken();
1943   parseStructuralElement();
1944 }
1945 
1946 void UnwrappedLineParser::parseLabel() {
1947   nextToken();
1948   unsigned OldLineLevel = Line->Level;
1949   if (Line->Level > 1 || (!Line->InPPDirective && Line->Level > 0))
1950     --Line->Level;
1951   if (CommentsBeforeNextToken.empty() && FormatTok->Tok.is(tok::l_brace)) {
1952     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1953     parseBlock(/*MustBeDeclaration=*/false);
1954     if (FormatTok->Tok.is(tok::kw_break)) {
1955       if (Style.BraceWrapping.AfterControlStatement)
1956         addUnwrappedLine();
1957       parseStructuralElement();
1958     }
1959     addUnwrappedLine();
1960   } else {
1961     if (FormatTok->is(tok::semi))
1962       nextToken();
1963     addUnwrappedLine();
1964   }
1965   Line->Level = OldLineLevel;
1966   if (FormatTok->isNot(tok::l_brace)) {
1967     parseStructuralElement();
1968     addUnwrappedLine();
1969   }
1970 }
1971 
1972 void UnwrappedLineParser::parseCaseLabel() {
1973   assert(FormatTok->Tok.is(tok::kw_case) && "'case' expected");
1974   // FIXME: fix handling of complex expressions here.
1975   do {
1976     nextToken();
1977   } while (!eof() && !FormatTok->Tok.is(tok::colon));
1978   parseLabel();
1979 }
1980 
1981 void UnwrappedLineParser::parseSwitch() {
1982   assert(FormatTok->Tok.is(tok::kw_switch) && "'switch' expected");
1983   nextToken();
1984   if (FormatTok->Tok.is(tok::l_paren))
1985     parseParens();
1986   if (FormatTok->Tok.is(tok::l_brace)) {
1987     CompoundStatementIndenter Indenter(this, Style, Line->Level);
1988     parseBlock(/*MustBeDeclaration=*/false);
1989     addUnwrappedLine();
1990   } else {
1991     addUnwrappedLine();
1992     ++Line->Level;
1993     parseStructuralElement();
1994     --Line->Level;
1995   }
1996 }
1997 
1998 void UnwrappedLineParser::parseAccessSpecifier() {
1999   nextToken();
2000   // Understand Qt's slots.
2001   if (FormatTok->isOneOf(Keywords.kw_slots, Keywords.kw_qslots))
2002     nextToken();
2003   // Otherwise, we don't know what it is, and we'd better keep the next token.
2004   if (FormatTok->Tok.is(tok::colon))
2005     nextToken();
2006   addUnwrappedLine();
2007 }
2008 
2009 bool UnwrappedLineParser::parseEnum() {
2010   // Won't be 'enum' for NS_ENUMs.
2011   if (FormatTok->Tok.is(tok::kw_enum))
2012     nextToken();
2013 
2014   // In TypeScript, "enum" can also be used as property name, e.g. in interface
2015   // declarations. An "enum" keyword followed by a colon would be a syntax
2016   // error and thus assume it is just an identifier.
2017   if (Style.Language == FormatStyle::LK_JavaScript &&
2018       FormatTok->isOneOf(tok::colon, tok::question))
2019     return false;
2020 
2021   // In protobuf, "enum" can be used as a field name.
2022   if (Style.Language == FormatStyle::LK_Proto && FormatTok->is(tok::equal))
2023     return false;
2024 
2025   // Eat up enum class ...
2026   if (FormatTok->Tok.is(tok::kw_class) || FormatTok->Tok.is(tok::kw_struct))
2027     nextToken();
2028 
2029   while (FormatTok->Tok.getIdentifierInfo() ||
2030          FormatTok->isOneOf(tok::colon, tok::coloncolon, tok::less,
2031                             tok::greater, tok::comma, tok::question)) {
2032     nextToken();
2033     // We can have macros or attributes in between 'enum' and the enum name.
2034     if (FormatTok->is(tok::l_paren))
2035       parseParens();
2036     if (FormatTok->is(tok::identifier)) {
2037       nextToken();
2038       // If there are two identifiers in a row, this is likely an elaborate
2039       // return type. In Java, this can be "implements", etc.
2040       if (Style.isCpp() && FormatTok->is(tok::identifier))
2041         return false;
2042     }
2043   }
2044 
2045   // Just a declaration or something is wrong.
2046   if (FormatTok->isNot(tok::l_brace))
2047     return true;
2048   FormatTok->BlockKind = BK_Block;
2049 
2050   if (Style.Language == FormatStyle::LK_Java) {
2051     // Java enums are different.
2052     parseJavaEnumBody();
2053     return true;
2054   }
2055   if (Style.Language == FormatStyle::LK_Proto) {
2056     parseBlock(/*MustBeDeclaration=*/true);
2057     return true;
2058   }
2059 
2060   // Parse enum body.
2061   nextToken();
2062   bool HasError = !parseBracedList(/*ContinueOnSemicolons=*/true);
2063   if (HasError) {
2064     if (FormatTok->is(tok::semi))
2065       nextToken();
2066     addUnwrappedLine();
2067   }
2068   return true;
2069 
2070   // There is no addUnwrappedLine() here so that we fall through to parsing a
2071   // structural element afterwards. Thus, in "enum A {} n, m;",
2072   // "} n, m;" will end up in one unwrapped line.
2073 }
2074 
2075 void UnwrappedLineParser::parseJavaEnumBody() {
2076   // Determine whether the enum is simple, i.e. does not have a semicolon or
2077   // constants with class bodies. Simple enums can be formatted like braced
2078   // lists, contracted to a single line, etc.
2079   unsigned StoredPosition = Tokens->getPosition();
2080   bool IsSimple = true;
2081   FormatToken *Tok = Tokens->getNextToken();
2082   while (Tok) {
2083     if (Tok->is(tok::r_brace))
2084       break;
2085     if (Tok->isOneOf(tok::l_brace, tok::semi)) {
2086       IsSimple = false;
2087       break;
2088     }
2089     // FIXME: This will also mark enums with braces in the arguments to enum
2090     // constants as "not simple". This is probably fine in practice, though.
2091     Tok = Tokens->getNextToken();
2092   }
2093   FormatTok = Tokens->setPosition(StoredPosition);
2094 
2095   if (IsSimple) {
2096     nextToken();
2097     parseBracedList();
2098     addUnwrappedLine();
2099     return;
2100   }
2101 
2102   // Parse the body of a more complex enum.
2103   // First add a line for everything up to the "{".
2104   nextToken();
2105   addUnwrappedLine();
2106   ++Line->Level;
2107 
2108   // Parse the enum constants.
2109   while (FormatTok) {
2110     if (FormatTok->is(tok::l_brace)) {
2111       // Parse the constant's class body.
2112       parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/true,
2113                  /*MunchSemi=*/false);
2114     } else if (FormatTok->is(tok::l_paren)) {
2115       parseParens();
2116     } else if (FormatTok->is(tok::comma)) {
2117       nextToken();
2118       addUnwrappedLine();
2119     } else if (FormatTok->is(tok::semi)) {
2120       nextToken();
2121       addUnwrappedLine();
2122       break;
2123     } else if (FormatTok->is(tok::r_brace)) {
2124       addUnwrappedLine();
2125       break;
2126     } else {
2127       nextToken();
2128     }
2129   }
2130 
2131   // Parse the class body after the enum's ";" if any.
2132   parseLevel(/*HasOpeningBrace=*/true);
2133   nextToken();
2134   --Line->Level;
2135   addUnwrappedLine();
2136 }
2137 
2138 void UnwrappedLineParser::parseRecord(bool ParseAsExpr) {
2139   const FormatToken &InitialToken = *FormatTok;
2140   nextToken();
2141 
2142   // The actual identifier can be a nested name specifier, and in macros
2143   // it is often token-pasted.
2144   while (FormatTok->isOneOf(tok::identifier, tok::coloncolon, tok::hashhash,
2145                             tok::kw___attribute, tok::kw___declspec,
2146                             tok::kw_alignas) ||
2147          ((Style.Language == FormatStyle::LK_Java ||
2148            Style.Language == FormatStyle::LK_JavaScript) &&
2149           FormatTok->isOneOf(tok::period, tok::comma))) {
2150     if (Style.Language == FormatStyle::LK_JavaScript &&
2151         FormatTok->isOneOf(Keywords.kw_extends, Keywords.kw_implements)) {
2152       // JavaScript/TypeScript supports inline object types in
2153       // extends/implements positions:
2154       //     class Foo implements {bar: number} { }
2155       nextToken();
2156       if (FormatTok->is(tok::l_brace)) {
2157         tryToParseBracedList();
2158         continue;
2159       }
2160     }
2161     bool IsNonMacroIdentifier =
2162         FormatTok->is(tok::identifier) &&
2163         FormatTok->TokenText != FormatTok->TokenText.upper();
2164     nextToken();
2165     // We can have macros or attributes in between 'class' and the class name.
2166     if (!IsNonMacroIdentifier && FormatTok->Tok.is(tok::l_paren))
2167       parseParens();
2168   }
2169 
2170   // Note that parsing away template declarations here leads to incorrectly
2171   // accepting function declarations as record declarations.
2172   // In general, we cannot solve this problem. Consider:
2173   // class A<int> B() {}
2174   // which can be a function definition or a class definition when B() is a
2175   // macro. If we find enough real-world cases where this is a problem, we
2176   // can parse for the 'template' keyword in the beginning of the statement,
2177   // and thus rule out the record production in case there is no template
2178   // (this would still leave us with an ambiguity between template function
2179   // and class declarations).
2180   if (FormatTok->isOneOf(tok::colon, tok::less)) {
2181     while (!eof()) {
2182       if (FormatTok->is(tok::l_brace)) {
2183         calculateBraceTypes(/*ExpectClassBody=*/true);
2184         if (!tryToParseBracedList())
2185           break;
2186       }
2187       if (FormatTok->Tok.is(tok::semi))
2188         return;
2189       nextToken();
2190     }
2191   }
2192   if (FormatTok->Tok.is(tok::l_brace)) {
2193     if (ParseAsExpr) {
2194       parseChildBlock();
2195     } else {
2196       if (ShouldBreakBeforeBrace(Style, InitialToken))
2197         addUnwrappedLine();
2198 
2199       parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/true,
2200                  /*MunchSemi=*/false);
2201     }
2202   }
2203   // There is no addUnwrappedLine() here so that we fall through to parsing a
2204   // structural element afterwards. Thus, in "class A {} n, m;",
2205   // "} n, m;" will end up in one unwrapped line.
2206 }
2207 
2208 void UnwrappedLineParser::parseObjCMethod() {
2209   assert(FormatTok->Tok.isOneOf(tok::l_paren, tok::identifier) &&
2210          "'(' or identifier expected.");
2211   do {
2212     if (FormatTok->Tok.is(tok::semi)) {
2213       nextToken();
2214       addUnwrappedLine();
2215       return;
2216     } else if (FormatTok->Tok.is(tok::l_brace)) {
2217       if (Style.BraceWrapping.AfterFunction)
2218         addUnwrappedLine();
2219       parseBlock(/*MustBeDeclaration=*/false);
2220       addUnwrappedLine();
2221       return;
2222     } else {
2223       nextToken();
2224     }
2225   } while (!eof());
2226 }
2227 
2228 void UnwrappedLineParser::parseObjCProtocolList() {
2229   assert(FormatTok->Tok.is(tok::less) && "'<' expected.");
2230   do {
2231     nextToken();
2232     // Early exit in case someone forgot a close angle.
2233     if (FormatTok->isOneOf(tok::semi, tok::l_brace) ||
2234         FormatTok->Tok.isObjCAtKeyword(tok::objc_end))
2235       return;
2236   } while (!eof() && FormatTok->Tok.isNot(tok::greater));
2237   nextToken(); // Skip '>'.
2238 }
2239 
2240 void UnwrappedLineParser::parseObjCUntilAtEnd() {
2241   do {
2242     if (FormatTok->Tok.isObjCAtKeyword(tok::objc_end)) {
2243       nextToken();
2244       addUnwrappedLine();
2245       break;
2246     }
2247     if (FormatTok->is(tok::l_brace)) {
2248       parseBlock(/*MustBeDeclaration=*/false);
2249       // In ObjC interfaces, nothing should be following the "}".
2250       addUnwrappedLine();
2251     } else if (FormatTok->is(tok::r_brace)) {
2252       // Ignore stray "}". parseStructuralElement doesn't consume them.
2253       nextToken();
2254       addUnwrappedLine();
2255     } else if (FormatTok->isOneOf(tok::minus, tok::plus)) {
2256       nextToken();
2257       parseObjCMethod();
2258     } else {
2259       parseStructuralElement();
2260     }
2261   } while (!eof());
2262 }
2263 
2264 void UnwrappedLineParser::parseObjCInterfaceOrImplementation() {
2265   assert(FormatTok->Tok.getObjCKeywordID() == tok::objc_interface ||
2266          FormatTok->Tok.getObjCKeywordID() == tok::objc_implementation);
2267   nextToken();
2268   nextToken(); // interface name
2269 
2270   // @interface can be followed by a lightweight generic
2271   // specialization list, then either a base class or a category.
2272   if (FormatTok->Tok.is(tok::less)) {
2273     // Unlike protocol lists, generic parameterizations support
2274     // nested angles:
2275     //
2276     // @interface Foo<ValueType : id <NSCopying, NSSecureCoding>> :
2277     //     NSObject <NSCopying, NSSecureCoding>
2278     //
2279     // so we need to count how many open angles we have left.
2280     unsigned NumOpenAngles = 1;
2281     do {
2282       nextToken();
2283       // Early exit in case someone forgot a close angle.
2284       if (FormatTok->isOneOf(tok::semi, tok::l_brace) ||
2285           FormatTok->Tok.isObjCAtKeyword(tok::objc_end))
2286         break;
2287       if (FormatTok->Tok.is(tok::less))
2288         ++NumOpenAngles;
2289       else if (FormatTok->Tok.is(tok::greater)) {
2290         assert(NumOpenAngles > 0 && "'>' makes NumOpenAngles negative");
2291         --NumOpenAngles;
2292       }
2293     } while (!eof() && NumOpenAngles != 0);
2294     nextToken(); // Skip '>'.
2295   }
2296   if (FormatTok->Tok.is(tok::colon)) {
2297     nextToken();
2298     nextToken(); // base class name
2299   } else if (FormatTok->Tok.is(tok::l_paren))
2300     // Skip category, if present.
2301     parseParens();
2302 
2303   if (FormatTok->Tok.is(tok::less))
2304     parseObjCProtocolList();
2305 
2306   if (FormatTok->Tok.is(tok::l_brace)) {
2307     if (Style.BraceWrapping.AfterObjCDeclaration)
2308       addUnwrappedLine();
2309     parseBlock(/*MustBeDeclaration=*/true);
2310   }
2311 
2312   // With instance variables, this puts '}' on its own line.  Without instance
2313   // variables, this ends the @interface line.
2314   addUnwrappedLine();
2315 
2316   parseObjCUntilAtEnd();
2317 }
2318 
2319 // Returns true for the declaration/definition form of @protocol,
2320 // false for the expression form.
2321 bool UnwrappedLineParser::parseObjCProtocol() {
2322   assert(FormatTok->Tok.getObjCKeywordID() == tok::objc_protocol);
2323   nextToken();
2324 
2325   if (FormatTok->is(tok::l_paren))
2326     // The expression form of @protocol, e.g. "Protocol* p = @protocol(foo);".
2327     return false;
2328 
2329   // The definition/declaration form,
2330   // @protocol Foo
2331   // - (int)someMethod;
2332   // @end
2333 
2334   nextToken(); // protocol name
2335 
2336   if (FormatTok->Tok.is(tok::less))
2337     parseObjCProtocolList();
2338 
2339   // Check for protocol declaration.
2340   if (FormatTok->Tok.is(tok::semi)) {
2341     nextToken();
2342     addUnwrappedLine();
2343     return true;
2344   }
2345 
2346   addUnwrappedLine();
2347   parseObjCUntilAtEnd();
2348   return true;
2349 }
2350 
2351 void UnwrappedLineParser::parseJavaScriptEs6ImportExport() {
2352   bool IsImport = FormatTok->is(Keywords.kw_import);
2353   assert(IsImport || FormatTok->is(tok::kw_export));
2354   nextToken();
2355 
2356   // Consume the "default" in "export default class/function".
2357   if (FormatTok->is(tok::kw_default))
2358     nextToken();
2359 
2360   // Consume "async function", "function" and "default function", so that these
2361   // get parsed as free-standing JS functions, i.e. do not require a trailing
2362   // semicolon.
2363   if (FormatTok->is(Keywords.kw_async))
2364     nextToken();
2365   if (FormatTok->is(Keywords.kw_function)) {
2366     nextToken();
2367     return;
2368   }
2369 
2370   // For imports, `export *`, `export {...}`, consume the rest of the line up
2371   // to the terminating `;`. For everything else, just return and continue
2372   // parsing the structural element, i.e. the declaration or expression for
2373   // `export default`.
2374   if (!IsImport && !FormatTok->isOneOf(tok::l_brace, tok::star) &&
2375       !FormatTok->isStringLiteral())
2376     return;
2377 
2378   while (!eof()) {
2379     if (FormatTok->is(tok::semi))
2380       return;
2381     if (Line->Tokens.empty()) {
2382       // Common issue: Automatic Semicolon Insertion wrapped the line, so the
2383       // import statement should terminate.
2384       return;
2385     }
2386     if (FormatTok->is(tok::l_brace)) {
2387       FormatTok->BlockKind = BK_Block;
2388       nextToken();
2389       parseBracedList();
2390     } else {
2391       nextToken();
2392     }
2393   }
2394 }
2395 
2396 void UnwrappedLineParser::parseStatementMacro() {
2397   nextToken();
2398   if (FormatTok->is(tok::l_paren))
2399     parseParens();
2400   if (FormatTok->is(tok::semi))
2401     nextToken();
2402   addUnwrappedLine();
2403 }
2404 
2405 LLVM_ATTRIBUTE_UNUSED static void printDebugInfo(const UnwrappedLine &Line,
2406                                                  StringRef Prefix = "") {
2407   llvm::dbgs() << Prefix << "Line(" << Line.Level
2408                << ", FSC=" << Line.FirstStartColumn << ")"
2409                << (Line.InPPDirective ? " MACRO" : "") << ": ";
2410   for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(),
2411                                                     E = Line.Tokens.end();
2412        I != E; ++I) {
2413     llvm::dbgs() << I->Tok->Tok.getName() << "["
2414                  << "T=" << I->Tok->Type << ", OC=" << I->Tok->OriginalColumn
2415                  << "] ";
2416   }
2417   for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(),
2418                                                     E = Line.Tokens.end();
2419        I != E; ++I) {
2420     const UnwrappedLineNode &Node = *I;
2421     for (SmallVectorImpl<UnwrappedLine>::const_iterator
2422              I = Node.Children.begin(),
2423              E = Node.Children.end();
2424          I != E; ++I) {
2425       printDebugInfo(*I, "\nChild: ");
2426     }
2427   }
2428   llvm::dbgs() << "\n";
2429 }
2430 
2431 void UnwrappedLineParser::addUnwrappedLine() {
2432   if (Line->Tokens.empty())
2433     return;
2434   LLVM_DEBUG({
2435     if (CurrentLines == &Lines)
2436       printDebugInfo(*Line);
2437   });
2438   CurrentLines->push_back(std::move(*Line));
2439   Line->Tokens.clear();
2440   Line->MatchingOpeningBlockLineIndex = UnwrappedLine::kInvalidIndex;
2441   Line->FirstStartColumn = 0;
2442   if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) {
2443     CurrentLines->append(
2444         std::make_move_iterator(PreprocessorDirectives.begin()),
2445         std::make_move_iterator(PreprocessorDirectives.end()));
2446     PreprocessorDirectives.clear();
2447   }
2448   // Disconnect the current token from the last token on the previous line.
2449   FormatTok->Previous = nullptr;
2450 }
2451 
2452 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); }
2453 
2454 bool UnwrappedLineParser::isOnNewLine(const FormatToken &FormatTok) {
2455   return (Line->InPPDirective || FormatTok.HasUnescapedNewline) &&
2456          FormatTok.NewlinesBefore > 0;
2457 }
2458 
2459 // Checks if \p FormatTok is a line comment that continues the line comment
2460 // section on \p Line.
2461 static bool continuesLineCommentSection(const FormatToken &FormatTok,
2462                                         const UnwrappedLine &Line,
2463                                         llvm::Regex &CommentPragmasRegex) {
2464   if (Line.Tokens.empty())
2465     return false;
2466 
2467   StringRef IndentContent = FormatTok.TokenText;
2468   if (FormatTok.TokenText.startswith("//") ||
2469       FormatTok.TokenText.startswith("/*"))
2470     IndentContent = FormatTok.TokenText.substr(2);
2471   if (CommentPragmasRegex.match(IndentContent))
2472     return false;
2473 
2474   // If Line starts with a line comment, then FormatTok continues the comment
2475   // section if its original column is greater or equal to the original start
2476   // column of the line.
2477   //
2478   // Define the min column token of a line as follows: if a line ends in '{' or
2479   // contains a '{' followed by a line comment, then the min column token is
2480   // that '{'. Otherwise, the min column token of the line is the first token of
2481   // the line.
2482   //
2483   // If Line starts with a token other than a line comment, then FormatTok
2484   // continues the comment section if its original column is greater than the
2485   // original start column of the min column token of the line.
2486   //
2487   // For example, the second line comment continues the first in these cases:
2488   //
2489   // // first line
2490   // // second line
2491   //
2492   // and:
2493   //
2494   // // first line
2495   //  // second line
2496   //
2497   // and:
2498   //
2499   // int i; // first line
2500   //  // second line
2501   //
2502   // and:
2503   //
2504   // do { // first line
2505   //      // second line
2506   //   int i;
2507   // } while (true);
2508   //
2509   // and:
2510   //
2511   // enum {
2512   //   a, // first line
2513   //    // second line
2514   //   b
2515   // };
2516   //
2517   // The second line comment doesn't continue the first in these cases:
2518   //
2519   //   // first line
2520   //  // second line
2521   //
2522   // and:
2523   //
2524   // int i; // first line
2525   // // second line
2526   //
2527   // and:
2528   //
2529   // do { // first line
2530   //   // second line
2531   //   int i;
2532   // } while (true);
2533   //
2534   // and:
2535   //
2536   // enum {
2537   //   a, // first line
2538   //   // second line
2539   // };
2540   const FormatToken *MinColumnToken = Line.Tokens.front().Tok;
2541 
2542   // Scan for '{//'. If found, use the column of '{' as a min column for line
2543   // comment section continuation.
2544   const FormatToken *PreviousToken = nullptr;
2545   for (const UnwrappedLineNode &Node : Line.Tokens) {
2546     if (PreviousToken && PreviousToken->is(tok::l_brace) &&
2547         isLineComment(*Node.Tok)) {
2548       MinColumnToken = PreviousToken;
2549       break;
2550     }
2551     PreviousToken = Node.Tok;
2552 
2553     // Grab the last newline preceding a token in this unwrapped line.
2554     if (Node.Tok->NewlinesBefore > 0) {
2555       MinColumnToken = Node.Tok;
2556     }
2557   }
2558   if (PreviousToken && PreviousToken->is(tok::l_brace)) {
2559     MinColumnToken = PreviousToken;
2560   }
2561 
2562   return continuesLineComment(FormatTok, /*Previous=*/Line.Tokens.back().Tok,
2563                               MinColumnToken);
2564 }
2565 
2566 void UnwrappedLineParser::flushComments(bool NewlineBeforeNext) {
2567   bool JustComments = Line->Tokens.empty();
2568   for (SmallVectorImpl<FormatToken *>::const_iterator
2569            I = CommentsBeforeNextToken.begin(),
2570            E = CommentsBeforeNextToken.end();
2571        I != E; ++I) {
2572     // Line comments that belong to the same line comment section are put on the
2573     // same line since later we might want to reflow content between them.
2574     // Additional fine-grained breaking of line comment sections is controlled
2575     // by the class BreakableLineCommentSection in case it is desirable to keep
2576     // several line comment sections in the same unwrapped line.
2577     //
2578     // FIXME: Consider putting separate line comment sections as children to the
2579     // unwrapped line instead.
2580     (*I)->ContinuesLineCommentSection =
2581         continuesLineCommentSection(**I, *Line, CommentPragmasRegex);
2582     if (isOnNewLine(**I) && JustComments && !(*I)->ContinuesLineCommentSection)
2583       addUnwrappedLine();
2584     pushToken(*I);
2585   }
2586   if (NewlineBeforeNext && JustComments)
2587     addUnwrappedLine();
2588   CommentsBeforeNextToken.clear();
2589 }
2590 
2591 void UnwrappedLineParser::nextToken(int LevelDifference) {
2592   if (eof())
2593     return;
2594   flushComments(isOnNewLine(*FormatTok));
2595   pushToken(FormatTok);
2596   FormatToken *Previous = FormatTok;
2597   if (Style.Language != FormatStyle::LK_JavaScript)
2598     readToken(LevelDifference);
2599   else
2600     readTokenWithJavaScriptASI();
2601   FormatTok->Previous = Previous;
2602 }
2603 
2604 void UnwrappedLineParser::distributeComments(
2605     const SmallVectorImpl<FormatToken *> &Comments,
2606     const FormatToken *NextTok) {
2607   // Whether or not a line comment token continues a line is controlled by
2608   // the method continuesLineCommentSection, with the following caveat:
2609   //
2610   // Define a trail of Comments to be a nonempty proper postfix of Comments such
2611   // that each comment line from the trail is aligned with the next token, if
2612   // the next token exists. If a trail exists, the beginning of the maximal
2613   // trail is marked as a start of a new comment section.
2614   //
2615   // For example in this code:
2616   //
2617   // int a; // line about a
2618   //   // line 1 about b
2619   //   // line 2 about b
2620   //   int b;
2621   //
2622   // the two lines about b form a maximal trail, so there are two sections, the
2623   // first one consisting of the single comment "// line about a" and the
2624   // second one consisting of the next two comments.
2625   if (Comments.empty())
2626     return;
2627   bool ShouldPushCommentsInCurrentLine = true;
2628   bool HasTrailAlignedWithNextToken = false;
2629   unsigned StartOfTrailAlignedWithNextToken = 0;
2630   if (NextTok) {
2631     // We are skipping the first element intentionally.
2632     for (unsigned i = Comments.size() - 1; i > 0; --i) {
2633       if (Comments[i]->OriginalColumn == NextTok->OriginalColumn) {
2634         HasTrailAlignedWithNextToken = true;
2635         StartOfTrailAlignedWithNextToken = i;
2636       }
2637     }
2638   }
2639   for (unsigned i = 0, e = Comments.size(); i < e; ++i) {
2640     FormatToken *FormatTok = Comments[i];
2641     if (HasTrailAlignedWithNextToken && i == StartOfTrailAlignedWithNextToken) {
2642       FormatTok->ContinuesLineCommentSection = false;
2643     } else {
2644       FormatTok->ContinuesLineCommentSection =
2645           continuesLineCommentSection(*FormatTok, *Line, CommentPragmasRegex);
2646     }
2647     if (!FormatTok->ContinuesLineCommentSection &&
2648         (isOnNewLine(*FormatTok) || FormatTok->IsFirst)) {
2649       ShouldPushCommentsInCurrentLine = false;
2650     }
2651     if (ShouldPushCommentsInCurrentLine) {
2652       pushToken(FormatTok);
2653     } else {
2654       CommentsBeforeNextToken.push_back(FormatTok);
2655     }
2656   }
2657 }
2658 
2659 void UnwrappedLineParser::readToken(int LevelDifference) {
2660   SmallVector<FormatToken *, 1> Comments;
2661   do {
2662     FormatTok = Tokens->getNextToken();
2663     assert(FormatTok);
2664     while (!Line->InPPDirective && FormatTok->Tok.is(tok::hash) &&
2665            (FormatTok->HasUnescapedNewline || FormatTok->IsFirst)) {
2666       distributeComments(Comments, FormatTok);
2667       Comments.clear();
2668       // If there is an unfinished unwrapped line, we flush the preprocessor
2669       // directives only after that unwrapped line was finished later.
2670       bool SwitchToPreprocessorLines = !Line->Tokens.empty();
2671       ScopedLineState BlockState(*this, SwitchToPreprocessorLines);
2672       assert((LevelDifference >= 0 ||
2673               static_cast<unsigned>(-LevelDifference) <= Line->Level) &&
2674              "LevelDifference makes Line->Level negative");
2675       Line->Level += LevelDifference;
2676       // Comments stored before the preprocessor directive need to be output
2677       // before the preprocessor directive, at the same level as the
2678       // preprocessor directive, as we consider them to apply to the directive.
2679       if (Style.IndentPPDirectives == FormatStyle::PPDIS_BeforeHash &&
2680           PPBranchLevel > 0)
2681         Line->Level += PPBranchLevel;
2682       flushComments(isOnNewLine(*FormatTok));
2683       parsePPDirective();
2684     }
2685     while (FormatTok->Type == TT_ConflictStart ||
2686            FormatTok->Type == TT_ConflictEnd ||
2687            FormatTok->Type == TT_ConflictAlternative) {
2688       if (FormatTok->Type == TT_ConflictStart) {
2689         conditionalCompilationStart(/*Unreachable=*/false);
2690       } else if (FormatTok->Type == TT_ConflictAlternative) {
2691         conditionalCompilationAlternative();
2692       } else if (FormatTok->Type == TT_ConflictEnd) {
2693         conditionalCompilationEnd();
2694       }
2695       FormatTok = Tokens->getNextToken();
2696       FormatTok->MustBreakBefore = true;
2697     }
2698 
2699     if (!PPStack.empty() && (PPStack.back().Kind == PP_Unreachable) &&
2700         !Line->InPPDirective) {
2701       continue;
2702     }
2703 
2704     if (!FormatTok->Tok.is(tok::comment)) {
2705       distributeComments(Comments, FormatTok);
2706       Comments.clear();
2707       return;
2708     }
2709 
2710     Comments.push_back(FormatTok);
2711   } while (!eof());
2712 
2713   distributeComments(Comments, nullptr);
2714   Comments.clear();
2715 }
2716 
2717 void UnwrappedLineParser::pushToken(FormatToken *Tok) {
2718   Line->Tokens.push_back(UnwrappedLineNode(Tok));
2719   if (MustBreakBeforeNextToken) {
2720     Line->Tokens.back().Tok->MustBreakBefore = true;
2721     MustBreakBeforeNextToken = false;
2722   }
2723 }
2724 
2725 } // end namespace format
2726 } // end namespace clang
2727