2013-10-05 23:15:46 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-12-10 08:23:14 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ext::base;
|
|
|
|
use syntax::ext::build::AstBuilder;
|
|
|
|
use syntax::parse::token;
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax_pos;
|
2016-06-20 10:49:33 -05:00
|
|
|
use syntax::tokenstream;
|
2013-10-05 23:15:46 -05:00
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
use std::string::String;
|
2014-04-02 18:54:22 -05:00
|
|
|
|
2013-12-28 23:06:22 -06:00
|
|
|
pub fn expand_syntax_ext(cx: &mut base::ExtCtxt,
|
2016-06-21 17:08:13 -05:00
|
|
|
sp: syntax_pos::Span,
|
2016-06-20 10:49:33 -05:00
|
|
|
tts: &[tokenstream::TokenTree])
|
2016-06-06 09:52:48 -05:00
|
|
|
-> Box<base::MacResult + 'static> {
|
2014-01-17 08:53:10 -06:00
|
|
|
let es = match base::get_exprs_from_tts(cx, sp, tts) {
|
|
|
|
Some(e) => e,
|
2016-06-06 09:52:48 -05:00
|
|
|
None => return base::DummyResult::expr(sp),
|
2014-01-17 08:53:10 -06:00
|
|
|
};
|
2014-05-22 18:57:53 -05:00
|
|
|
let mut accumulator = String::new();
|
2015-01-31 19:03:04 -06:00
|
|
|
for e in es {
|
2013-10-05 23:15:46 -05:00
|
|
|
match e.node {
|
2016-02-08 09:05:05 -06:00
|
|
|
ast::ExprKind::Lit(ref lit) => {
|
2013-10-05 23:15:46 -05:00
|
|
|
match lit.node {
|
2016-02-08 10:06:20 -06:00
|
|
|
ast::LitKind::Str(ref s, _) |
|
|
|
|
ast::LitKind::Float(ref s, _) |
|
|
|
|
ast::LitKind::FloatUnsuffixed(ref s) => {
|
2015-02-04 14:48:12 -06:00
|
|
|
accumulator.push_str(&s);
|
2014-01-10 16:02:36 -06:00
|
|
|
}
|
2016-02-08 10:06:20 -06:00
|
|
|
ast::LitKind::Char(c) => {
|
2014-10-15 01:05:01 -05:00
|
|
|
accumulator.push(c);
|
2013-10-05 23:15:46 -05:00
|
|
|
}
|
2016-02-08 10:16:23 -06:00
|
|
|
ast::LitKind::Int(i, ast::LitIntType::Unsigned(_)) |
|
|
|
|
ast::LitKind::Int(i, ast::LitIntType::Signed(_)) |
|
|
|
|
ast::LitKind::Int(i, ast::LitIntType::Unsuffixed) => {
|
2015-02-20 13:08:14 -06:00
|
|
|
accumulator.push_str(&format!("{}", i));
|
2013-10-05 23:15:46 -05:00
|
|
|
}
|
2016-02-08 10:06:20 -06:00
|
|
|
ast::LitKind::Bool(b) => {
|
2015-02-20 13:08:14 -06:00
|
|
|
accumulator.push_str(&format!("{}", b));
|
2013-10-05 23:15:46 -05:00
|
|
|
}
|
2016-02-08 10:06:20 -06:00
|
|
|
ast::LitKind::Byte(..) |
|
|
|
|
ast::LitKind::ByteStr(..) => {
|
2015-09-03 02:54:53 -05:00
|
|
|
cx.span_err(e.span, "cannot concatenate a byte string literal");
|
2013-10-05 23:15:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
cx.span_err(e.span, "expected a literal");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-06 09:52:48 -05:00
|
|
|
base::MacEager::expr(cx.expr_str(sp, token::intern_and_get_ident(&accumulator[..])))
|
2013-10-05 23:15:46 -05:00
|
|
|
}
|