aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/token
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 18:24:31 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 19:30:26 +0300
commit70317569c6dcd9809ed4a8c425777e653ec6ca08 (patch)
tree07a538b296933e9e2a1f81088f8fcc8da3f749ad /build2/test/script/token
parentcbec9ea8841c8a58b2d50bb628b28aea7a6fe179 (diff)
Add hxx extension for headers
Diffstat (limited to 'build2/test/script/token')
-rw-r--r--build2/test/script/token65
1 files changed, 0 insertions, 65 deletions
diff --git a/build2/test/script/token b/build2/test/script/token
deleted file mode 100644
index 9d3e330..0000000
--- a/build2/test/script/token
+++ /dev/null
@@ -1,65 +0,0 @@
-// file : build2/test/script/token -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 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()!
-
- 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