rust/compiler/rustc_builtin_macros/src/concat.rs

82 lines
3.2 KiB
Rust
Raw Normal View History

use rustc_ast::tokenstream::TokenStream;
use rustc_ast::{ExprKind, LitKind, UnOp};
use rustc_expand::base::{get_exprs_from_tts, DummyResult, ExtCtxt, MacEager, MacResult};
use rustc_session::errors::report_lit_error;
2020-01-01 18:30:57 +00:00
use rustc_span::symbol::Symbol;
use crate::errors;
pub fn expand_concat(
cx: &mut ExtCtxt<'_>,
sp: rustc_span::Span,
tts: TokenStream,
) -> Box<dyn MacResult + 'static> {
let es = match get_exprs_from_tts(cx, tts) {
Ok(es) => es,
Err(guar) => return DummyResult::any(sp, guar),
};
let mut accumulator = String::new();
let mut missing_literal = vec![];
let mut guar = None;
for e in es {
match e.kind {
ExprKind::Lit(token_lit) => match LitKind::from_token_lit(token_lit) {
Ok(LitKind::Str(s, _) | LitKind::Float(s, _)) => {
accumulator.push_str(s.as_str());
}
Ok(LitKind::Char(c)) => {
2018-07-11 00:50:21 +00:00
accumulator.push(c);
}
Ok(LitKind::Int(i, _)) => {
2018-07-27 09:11:18 +00:00
accumulator.push_str(&i.to_string());
2018-07-11 00:50:21 +00:00
}
Ok(LitKind::Bool(b)) => {
2018-07-27 09:11:18 +00:00
accumulator.push_str(&b.to_string());
2018-07-11 00:50:21 +00:00
}
Ok(LitKind::CStr(..)) => {
guar = Some(cx.dcx().emit_err(errors::ConcatCStrLit { span: e.span }));
}
Ok(LitKind::Byte(..) | LitKind::ByteStr(..)) => {
guar = Some(cx.dcx().emit_err(errors::ConcatBytestr { span: e.span }));
}
Ok(LitKind::Err(guarantee)) => {
guar = Some(guarantee);
2018-07-11 00:50:21 +00:00
}
Err(err) => {
guar = Some(report_lit_error(&cx.sess.parse_sess, err, token_lit, e.span));
}
2018-07-11 00:50:21 +00:00
},
// We also want to allow negative numeric literals.
ExprKind::Unary(UnOp::Neg, ref expr) if let ExprKind::Lit(token_lit) = expr.kind => {
match LitKind::from_token_lit(token_lit) {
Ok(LitKind::Int(i, _)) => accumulator.push_str(&format!("-{i}")),
Ok(LitKind::Float(f, _)) => accumulator.push_str(&format!("-{f}")),
Err(err) => {
guar = Some(report_lit_error(&cx.sess.parse_sess, err, token_lit, e.span));
}
_ => missing_literal.push(e.span),
}
}
ExprKind::IncludedBytes(..) => {
cx.dcx().emit_err(errors::ConcatBytestr { span: e.span });
2022-10-31 18:30:09 +00:00
}
ExprKind::Err(guarantee) => {
guar = Some(guarantee);
}
ExprKind::Dummy => cx.dcx().span_bug(e.span, "concatenating `ExprKind::Dummy`"),
_ => {
missing_literal.push(e.span);
}
}
}
if !missing_literal.is_empty() {
let guar = cx.dcx().emit_err(errors::ConcatMissingLiteral { spans: missing_literal });
return DummyResult::any(sp, guar);
} else if let Some(guar) = guar {
return DummyResult::any(sp, guar);
}
2019-09-14 20:17:11 +00:00
let sp = cx.with_def_site_ctxt(sp);
MacEager::expr(cx.expr_str(sp, Symbol::intern(&accumulator)))
}