rust/src/libsyntax_ext/concat_idents.rs

67 lines
2.1 KiB
Rust
Raw Normal View History

use rustc_data_structures::thin_vec::ThinVec;
use syntax::ast;
2019-02-04 06:49:54 -06:00
use syntax::ext::base::{self, *};
use syntax::parse::token::{self, Token};
use syntax::ptr::P;
use syntax_pos::Span;
use syntax_pos::symbol::Symbol;
use syntax::tokenstream::TokenTree;
2019-02-04 06:49:54 -06:00
pub fn expand_syntax_ext<'cx>(cx: &'cx mut ExtCtxt<'_>,
2016-06-06 09:52:48 -05:00
sp: Span,
tts: &[TokenTree])
-> Box<dyn base::MacResult + 'cx> {
if tts.is_empty() {
cx.span_err(sp, "concat_idents! takes 1 or more arguments.");
return DummyResult::any(sp);
}
let mut res_str = String::new();
for (i, e) in tts.iter().enumerate() {
if i & 1 == 1 {
match *e {
TokenTree::Token(Token { kind: token::Comma, .. }) => {}
_ => {
cx.span_err(sp, "concat_idents! expecting comma.");
return DummyResult::any(sp);
2016-06-06 09:52:48 -05:00
}
}
} else {
match *e {
TokenTree::Token(Token { kind: token::Ident(name, _), .. }) =>
res_str.push_str(&name.as_str()),
_ => {
cx.span_err(sp, "concat_idents! requires ident args.");
return DummyResult::any(sp);
2016-06-06 09:52:48 -05:00
}
}
}
}
let ident = ast::Ident::new(Symbol::intern(&res_str), sp.apply_mark(cx.current_expansion.id));
2018-03-18 08:47:09 -05:00
struct ConcatIdentsResult { ident: ast::Ident }
2018-03-18 08:47:09 -05:00
impl base::MacResult for ConcatIdentsResult {
fn make_expr(self: Box<Self>) -> Option<P<ast::Expr>> {
Some(P(ast::Expr {
id: ast::DUMMY_NODE_ID,
2018-03-18 19:54:56 -05:00
node: ast::ExprKind::Path(None, ast::Path::from_ident(self.ident)),
2018-03-18 08:47:09 -05:00
span: self.ident.span,
attrs: ThinVec::new(),
}))
}
fn make_ty(self: Box<Self>) -> Option<P<ast::Ty>> {
Some(P(ast::Ty {
id: ast::DUMMY_NODE_ID,
2018-03-18 19:54:56 -05:00
node: ast::TyKind::Path(None, ast::Path::from_ident(self.ident)),
2018-03-18 08:47:09 -05:00
span: self.ident.span,
}))
}
}
2018-03-18 08:47:09 -05:00
Box::new(ConcatIdentsResult { ident })
}