2013-10-05 21:15:46 -07: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 23:23:14 +09:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ext::base;
|
|
|
|
use syntax::ext::build::AstBuilder;
|
2016-11-16 10:52:37 +00:00
|
|
|
use syntax::symbol::Symbol;
|
2016-06-20 08:49:33 -07:00
|
|
|
use syntax::tokenstream;
|
2018-07-11 08:50:21 +08:00
|
|
|
use syntax_pos;
|
2013-10-05 21:15:46 -07:00
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
use std::string::String;
|
2014-04-02 16:54:22 -07:00
|
|
|
|
2018-07-11 08:50:21 +08:00
|
|
|
pub fn expand_syntax_ext(
|
|
|
|
cx: &mut base::ExtCtxt,
|
|
|
|
sp: syntax_pos::Span,
|
|
|
|
tts: &[tokenstream::TokenTree],
|
2018-07-12 11:58:16 +02:00
|
|
|
) -> Box<dyn base::MacResult + 'static> {
|
2014-01-18 01:53:10 +11:00
|
|
|
let es = match base::get_exprs_from_tts(cx, sp, tts) {
|
|
|
|
Some(e) => e,
|
2016-06-06 20:22:48 +05:30
|
|
|
None => return base::DummyResult::expr(sp),
|
2014-01-18 01:53:10 +11:00
|
|
|
};
|
2014-05-22 16:57:53 -07:00
|
|
|
let mut accumulator = String::new();
|
2018-07-14 20:50:30 -07:00
|
|
|
let mut missing_literal = vec![];
|
2015-01-31 20:03:04 -05:00
|
|
|
for e in es {
|
2013-10-05 21:15:46 -07:00
|
|
|
match e.node {
|
2018-07-11 08:50:21 +08:00
|
|
|
ast::ExprKind::Lit(ref lit) => match lit.node {
|
|
|
|
ast::LitKind::Str(ref s, _)
|
|
|
|
| ast::LitKind::Float(ref s, _)
|
|
|
|
| ast::LitKind::FloatUnsuffixed(ref s) => {
|
|
|
|
accumulator.push_str(&s.as_str());
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
2018-07-11 08:50:21 +08:00
|
|
|
ast::LitKind::Char(c) => {
|
|
|
|
accumulator.push(c);
|
|
|
|
}
|
|
|
|
ast::LitKind::Int(i, ast::LitIntType::Unsigned(_))
|
|
|
|
| ast::LitKind::Int(i, ast::LitIntType::Signed(_))
|
|
|
|
| ast::LitKind::Int(i, ast::LitIntType::Unsuffixed) => {
|
|
|
|
accumulator.push_str(&format!("{}", i));
|
|
|
|
}
|
|
|
|
ast::LitKind::Bool(b) => {
|
|
|
|
accumulator.push_str(&format!("{}", b));
|
|
|
|
}
|
|
|
|
ast::LitKind::Byte(..) | ast::LitKind::ByteStr(..) => {
|
|
|
|
cx.span_err(e.span, "cannot concatenate a byte string literal");
|
|
|
|
}
|
|
|
|
},
|
2013-10-05 21:15:46 -07:00
|
|
|
_ => {
|
2018-07-14 20:50:30 -07:00
|
|
|
missing_literal.push(e.span);
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-14 20:50:30 -07:00
|
|
|
if missing_literal.len() > 0 {
|
|
|
|
let mut err = cx.struct_span_err(missing_literal, "expected a literal");
|
2018-07-15 11:52:11 -07:00
|
|
|
err.note("only literals (like `\"foo\"`, `42` and `3.14`) can be passed to `concat!()`");
|
2018-07-14 20:50:30 -07:00
|
|
|
err.emit();
|
|
|
|
}
|
2018-03-18 23:51:53 +03:00
|
|
|
let sp = sp.apply_mark(cx.current_expansion.mark);
|
2016-11-16 10:52:37 +00:00
|
|
|
base::MacEager::expr(cx.expr_str(sp, Symbol::intern(&accumulator)))
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|