diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-12-12 10:42:03 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-12-15 10:41:15 -0800 |
| commit | 775ccadd255a034745e2b741434bd6a159a10869 (patch) | |
| tree | 94bec20126a3656f0b5e098b9f8de0d68bef5a25 /src/libsyntax/parse | |
| parent | a87786e3e993564b444763f99dae24cdcb44a791 (diff) | |
| download | rust-775ccadd255a034745e2b741434bd6a159a10869.tar.gz rust-775ccadd255a034745e2b741434bd6a159a10869.zip | |
libsyntax: Implement the new `box` syntax for unique pointers.
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 16 | ||||
| -rw-r--r-- | src/libsyntax/parse/token.rs | 16 |
2 files changed, 25 insertions, 7 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index aa37d859d79..33e3bae99a7 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2326,6 +2326,22 @@ impl Parser { _ => self.mk_unary(UnUniq, e) }; } + token::IDENT(_, _) if self.is_keyword(keywords::Box) => { + self.bump(); + + let subexpression = self.parse_prefix_expr(); + hi = subexpression.span.hi; + // HACK: turn `box [...]` into a boxed-evec + ex = match subexpression.node { + ExprVec(..) | + ExprLit(@codemap::Spanned { + node: lit_str(..), + span: _ + }) | + ExprRepeat(..) => ExprVstore(subexpression, ExprVstoreUniq), + _ => self.mk_unary(UnUniq, subexpression) + }; + } _ => return self.parse_dot_or_call_expr() } return self.mk_expr(lo, hi, ex); diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index a49f423c408..9e1eec19b2c 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -465,15 +465,17 @@ declare_special_idents_and_keywords! { (45, While, "while"); (46, Continue, "continue"); (47, Proc, "proc"); + (48, Box, "box"); 'reserved: - (48, Alignof, "alignof"); - (49, Be, "be"); - (50, Offsetof, "offsetof"); - (51, Pure, "pure"); - (52, Sizeof, "sizeof"); - (53, Typeof, "typeof"); - (54, Yield, "yield"); + (49, Alignof, "alignof"); + (50, Be, "be"); + (51, Offsetof, "offsetof"); + (52, Pure, "pure"); + (53, Sizeof, "sizeof"); + (54, Typeof, "typeof"); + (55, Unsized, "unsized"); + (56, Yield, "yield"); } } |
