summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/parameter_pack_cleanup.cpp
blob: 4a2afbaaf27ae2e21f626f89d5c2e95d821c5339 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
 * @file parameter_pack_cleanup.cpp
 *
 * @author  Guy Maurel
 * @license GPL v2+
 */

#include "parameter_pack_cleanup.h"

#include "chunk_list.h"


void parameter_pack_cleanup(void)
{
   LOG_FUNC_ENTRY();

   chunk_t *pc = chunk_get_head();

   while (pc != nullptr)
   {
      LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
              __func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());

      // look for template
      if (chunk_is_token(pc, CT_TEMPLATE))                 // Issue #3309
      {
         chunk_t *template_end = chunk_get_next_type(pc, CT_SEMICOLON, pc->level);

         // look for a parameter pack
         while (pc != nullptr)
         {
            LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
                    __func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());

            if (chunk_is_token(pc, CT_PARAMETER_PACK))
            {
               chunk_t *parameter_pack = pc;

               // look for a token with the same text
               while (pc != nullptr)
               {
                  LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, text() is '%s'\n",
                          __func__, __LINE__, pc->orig_line, pc->orig_col, pc->text());
                  //pc = chunk_get_next(pc);

                  if (pc == template_end)
                  {
                     break;
                  }

                  if (strcmp(pc->text(), parameter_pack->text()) == 0)
                  {
                     set_chunk_type(pc, CT_PARAMETER_PACK);
                  }
                  pc = chunk_get_next(pc);
               }
            }
            pc = chunk_get_next(pc);

            if (pc == template_end)
            {
               break;
            }
         }
      }
      pc = chunk_get_next(pc);
   }
} // parameter_pack_cleanup