aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-07-04 19:12:15 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-07-05 14:24:43 +0300
commit57b10c06925d0bdf6ffb38488ee908f085109e95 (patch)
treef2103684d319650c3302aef9d7a70dd64ff2a347 /build2/test/script/token.hxx
parent30b4eda196e090aa820d312e6a9435a4ae84c303 (diff)
Move config, dist, test, and install modules into library
Diffstat (limited to 'build2/test/script/token.hxx')
-rw-r--r--build2/test/script/token.hxx65
1 files changed, 0 insertions, 65 deletions
diff --git a/build2/test/script/token.hxx b/build2/test/script/token.hxx
deleted file mode 100644
index c79ef1b..0000000
--- a/build2/test/script/token.hxx
+++ /dev/null
@@ -1,65 +0,0 @@
-// file : build2/test/script/token.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BUILD2_TEST_SCRIPT_TOKEN_HXX
-#define BUILD2_TEST_SCRIPT_TOKEN_HXX
-
-#include <libbuild2/types.hxx>
-#include <libbuild2/utility.hxx>
-
-#include <libbuild2/token.hxx>
-
-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()!
-
- semi = base_type::value_next, // ;
-
- dot, // .
-
- plus, // +
- minus, // -
-
- pipe, // |
- clean, // &{?!} (modifiers in value)
-
- in_pass, // <|
- in_null, // <-
- in_str, // <{:} (modifiers in value)
- in_doc, // <<{:} (modifiers in value)
- in_file, // <<<
-
- out_pass, // >|
- out_null, // >-
- out_trace, // >!
- out_merge, // >&
- out_str, // >{:~} (modifiers in value)
- out_doc, // >>{:~} (modifiers in value)
- out_file_cmp, // >>>
- out_file_ovr, // >=
- out_file_app // >+
- };
-
- 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_HXX