]> git.lizzy.rs Git - rust.git/blob - src/libsyntax_ext/concat.rs
Rollup merge of #64016 - nnethercote:Compiler-fiddling, r=oli-obk
[rust.git] / src / libsyntax_ext / concat.rs
1 use syntax::ast;
2 use syntax::ext::base::{self, DummyResult};
3 use syntax::symbol::Symbol;
4 use syntax::tokenstream::TokenStream;
5
6 use std::string::String;
7
8 pub fn expand_concat(
9     cx: &mut base::ExtCtxt<'_>,
10     sp: syntax_pos::Span,
11     tts: TokenStream,
12 ) -> Box<dyn base::MacResult + 'static> {
13     let es = match base::get_exprs_from_tts(cx, sp, tts) {
14         Some(e) => e,
15         None => return DummyResult::any(sp),
16     };
17     let mut accumulator = String::new();
18     let mut missing_literal = vec![];
19     let mut has_errors = false;
20     for e in es {
21         match e.node {
22             ast::ExprKind::Lit(ref lit) => match lit.node {
23                 ast::LitKind::Str(ref s, _)
24                 | ast::LitKind::Float(ref s, _)
25                 | ast::LitKind::FloatUnsuffixed(ref s) => {
26                     accumulator.push_str(&s.as_str());
27                 }
28                 ast::LitKind::Char(c) => {
29                     accumulator.push(c);
30                 }
31                 ast::LitKind::Int(i, ast::LitIntType::Unsigned(_))
32                 | ast::LitKind::Int(i, ast::LitIntType::Signed(_))
33                 | ast::LitKind::Int(i, ast::LitIntType::Unsuffixed) => {
34                     accumulator.push_str(&i.to_string());
35                 }
36                 ast::LitKind::Bool(b) => {
37                     accumulator.push_str(&b.to_string());
38                 }
39                 ast::LitKind::Byte(..) | ast::LitKind::ByteStr(..) => {
40                     cx.span_err(e.span, "cannot concatenate a byte string literal");
41                 }
42                 ast::LitKind::Err(_) => {
43                     has_errors = true;
44                 }
45             },
46             ast::ExprKind::Err => {
47                 has_errors = true;
48             }
49             _ => {
50                 missing_literal.push(e.span);
51             }
52         }
53     }
54     if missing_literal.len() > 0 {
55         let mut err = cx.struct_span_err(missing_literal, "expected a literal");
56         err.note("only literals (like `\"foo\"`, `42` and `3.14`) can be passed to `concat!()`");
57         err.emit();
58         return DummyResult::any(sp);
59     } else if has_errors {
60         return DummyResult::any(sp);
61     }
62     let sp = cx.with_def_site_ctxt(sp);
63     base::MacEager::expr(cx.expr_str(sp, Symbol::intern(&accumulator)))
64 }