Skip to content

Commit

Permalink
auto merge of #16891 : eddyb/rust/patlit-from-expr-macros, r=kballard
Browse files Browse the repository at this point in the history
Enables any macros using `MacExpr` to be treated as patterns when
they produce a literal in the form `ExprLit` (e.g. `stringify!` or `line!`).

Fixes #16876.
  • Loading branch information
bors committed Sep 1, 2014
2 parents eb7589a + a9c3109 commit 3768ef4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/libsyntax/ext/base.rs
Expand Up @@ -154,6 +154,16 @@ impl MacResult for MacExpr {
fn make_expr(&self) -> Option<Gc<ast::Expr>> {
Some(self.e)
}
fn make_pat(&self) -> Option<Gc<ast::Pat>> {
match self.e.node {
ast::ExprLit(_) => Some(box(GC) ast::Pat {
id: ast::DUMMY_NODE_ID,
node: ast::PatLit(self.e),
span: self.e.span
}),
_ => None
}
}
}
/// A convenience type for macros that return a single pattern.
pub struct MacPat {
Expand Down
5 changes: 5 additions & 0 deletions src/test/run-pass/concat.rs
Expand Up @@ -18,4 +18,9 @@ pub fn main() {
concat!(1, 2i, 3u, 4f32, 4.0, 'a', true, ()),
"12344.0atrue"
);

assert!(match "12344.0atrue" {
concat!(1, 2i, 3u, 4f32, 4.0, 'a', true, ()) => true,
_ => false
})
}
5 changes: 5 additions & 0 deletions src/test/run-pass/syntax-extension-source-utils.rs
Expand Up @@ -43,4 +43,9 @@ pub fn main() {
[1] == (42 as u8)); // '*'
// The Windows tests are wrapped in an extra module for some reason
assert!((m1::m2::where_am_i().as_slice().ends_with("m1::m2")));

assert!(match (47, "( 2 * 3 ) + 5") {
(line!(), stringify!((2*3) + 5)) => true,
_ => false
})
}

0 comments on commit 3768ef4

Please sign in to comment.