about summary refs log tree commit diff
path: root/src/comp/syntax/parse/parser.rs
diff options
context:
space:
mode:
authorKevin Atkinson <kevina@cs.utah.edu>2012-02-04 15:42:12 -0700
committerBrian Anderson <banderson@mozilla.com>2012-02-05 15:38:27 -0800
commit1d855ebc510855536beee418036b405cfa05808e (patch)
tree11bf14668926c5b378f24685ce2c529b6b7f91b3 /src/comp/syntax/parse/parser.rs
parent91b6dc5c8ed8d839006de4ea6a7e8cd6727db93d (diff)
downloadrust-1d855ebc510855536beee418036b405cfa05808e.tar.gz
rust-1d855ebc510855536beee418036b405cfa05808e.zip
Remove support for $(...) form of quasi-quotes, use #ast{...} instead.
Diffstat (limited to 'src/comp/syntax/parse/parser.rs')
-rw-r--r--src/comp/syntax/parse/parser.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index 0b321b17b92..d3c5695496c 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -880,12 +880,6 @@ fn parse_bottom_expr(p: parser) -> pexpr {
     } else if p.token == token::ELLIPSIS {
         p.bump();
         ret pexpr(mk_mac_expr(p, lo, p.span.hi, ast::mac_ellipsis));
-    } else if p.token == token::POUND_LPAREN {
-        p.bump();
-        let e = parse_expr(p);
-        expect(p, token::RPAREN);
-        ret pexpr(mk_mac_expr(p, lo, p.span.hi,
-                              ast::mac_qq(e.span, e)));
     } else if eat_word(p, "bind") {
         let e = parse_expr_res(p, RESTRICT_NO_CALL_EXPRS);
         fn parse_expr_opt(p: parser) -> option<@ast::expr> {