summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/src/flag_decltype.cpp
blob: 6950bc100d9982ff7c2912c937bb50cbd4a7ba95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
 * @file flag_decltype.cpp
 *
 * @license GPL v2+
 */

#include "chunk.h"


bool flag_cpp_decltype(Chunk *pc)
{
   LOG_FUNC_ENTRY();

   if (pc->Is(CT_DECLTYPE))
   {
      auto paren_open = pc->GetNextNcNnl();

      if (paren_open->Is(CT_PAREN_OPEN))
      {
         // We would like to simply call Chunk::SkipToMatch(), but it finds
         // a match based on level, and the level is 0 for all chunks in some
         // cases, like the following example.
         //
         // template <typename T>
         // decltype(std::declval<T &>().put(foo), std::true_type())
         // has_something(Tag<2>);
         //
         // This means that IN_DECLTYPE is only set for tokens through the
         // closing parenthesis right before ".put" in the above example.
         //
         // So, we will manually look for the matching closing parenthesis.
         paren_open->SetFlagBits(PCF_IN_DECLTYPE);
         pc = paren_open->GetNextNcNnl();

         for (int level = 1; pc->IsNotNullChunk() && level > 0; pc = pc->GetNextNcNnl())
         {
            level += pc->Is(CT_PAREN_OPEN);
            level -= pc->Is(CT_PAREN_CLOSE);
            pc->SetFlagBits(PCF_IN_DECLTYPE);
         }

         return(pc->IsNotNullChunk());
      }
   }
   return(false);
} // mark_cpp_decltype