aboutsummaryrefslogtreecommitdiff
path: root/build2/token.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-02 12:28:56 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-02 12:28:56 +0200
commit4bf42322fdd5dd7e01a3f61272bccc4a66a5585f (patch)
tree158d5f6c960b94923f573bf95d4ee970e87487b6 /build2/token.cxx
parent1214dffc272f6f0ffee4e8ec203804b21023930d (diff)
Add attribute syntax infrastructure
Diffstat (limited to 'build2/token.cxx')
-rw-r--r--build2/token.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/build2/token.cxx b/build2/token.cxx
index 7a36a2d..90aeff5 100644
--- a/build2/token.cxx
+++ b/build2/token.cxx
@@ -19,6 +19,8 @@ namespace build2
case token_type::colon: os << ":"; break;
case token_type::lcbrace: os << "{"; break;
case token_type::rcbrace: os << "}"; break;
+ case token_type::lsbrace: os << "["; break;
+ case token_type::rsbrace: os << "]"; break;
case token_type::assign: os << "="; break;
case token_type::prepend: os << "=+"; break;
case token_type::append: os << "+="; break;