aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/test/script/token.cxx
blob: df5493f386f6ef6b5d26798b5cd9cf6fc1497005 (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
// file      : libbuild2/test/script/token.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <libbuild2/test/script/token.hxx>

using namespace std;

namespace build2
{
  namespace test
  {
    namespace script
    {
      void
      token_printer (ostream& os, const token& t, bool d)
      {
        // Only quote non-name tokens for diagnostics.
        //
        const char* q (d ? "'" : "");

        switch (t.type)
        {
        case token_type::semi:  os << q << ';' << q; break;

        case token_type::dot:   os << q << '.' << q; break;

        case token_type::plus:  os << q << '+' << q; break;
        case token_type::minus: os << q << '-' << q; break;

        default: build2::script::token_printer (os, t, d);
        }
      }
    }
  }
}