aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token
blob: c39811a4a6935d5b20bf638dc076743bb062b384 (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
// file      : build2/test/script/token -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD2_TEST_SCRIPT_TOKEN
#define BUILD2_TEST_SCRIPT_TOKEN

#include <build2/types>
#include <build2/utility>

#include <build2/token>

namespace build2
{
  namespace test
  {
    namespace script
    {
      struct token_type: build2::token_type
      {
        using base_type = build2::token_type;

        enum
        {
          // NOTE: remember to update token_printer()!

          pipe = base_type::value_next, // |
          clean,                        // &
          log_and,                      // &&
          log_or,                       // ||

          in_null,                      // <!
          in_string,                    // <
          in_document,                  // <<

          out_null,                     // >!
          out_string,                   // >
          out_document                  // >>
        };

        token_type () = default;
        token_type (value_type v): base_type (v) {}
        token_type (base_type v): base_type (v) {}
      };

      void
      token_printer (ostream&, const token&, bool);
    }
  }
}

#endif // BUILD2_TEST_SCRIPT_TOKEN