aboutsummaryrefslogtreecommitdiff
path: root/build2/token.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/token.cxx')
-rw-r--r--build2/token.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/build2/token.cxx b/build2/token.cxx
index 81b7c55..8b62b46 100644
--- a/build2/token.cxx
+++ b/build2/token.cxx
@@ -36,6 +36,9 @@ namespace build2
case token_type::lsbrace: os << q << '[' << q; break;
case token_type::rsbrace: os << q << ']' << q; break;
+ case token_type::labrace: os << q << '<' << q; break;
+ case token_type::rabrace: os << q << '>' << q; break;
+
case token_type::assign: os << q << '=' << q; break;
case token_type::prepend: os << q << "=+" << q; break;
case token_type::append: os << q << "+=" << q; break;