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.
|
|
|
|
|
|
|
|
use ast;
|
|
|
|
use codemap;
|
|
|
|
use ext::base;
|
|
|
|
use ext::build::AstBuilder;
|
2014-01-10 14:02:36 -08:00
|
|
|
use parse::token;
|
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
|
|
|
|
2013-12-28 22:06:22 -07:00
|
|
|
pub fn expand_syntax_ext(cx: &mut base::ExtCtxt,
|
2013-10-05 21:15:46 -07:00
|
|
|
sp: codemap::Span,
|
2014-05-05 18:56:44 -07:00
|
|
|
tts: &[ast::TokenTree])
|
2014-08-27 21:46:52 -04:00
|
|
|
-> Box<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,
|
2014-04-15 22:00:14 +10:00
|
|
|
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();
|
2015-01-31 20:03:04 -05:00
|
|
|
for e in es {
|
2013-10-05 21:15:46 -07:00
|
|
|
match e.node {
|
2014-09-13 19:06:01 +03:00
|
|
|
ast::ExprLit(ref lit) => {
|
2013-10-05 21:15:46 -07:00
|
|
|
match lit.node {
|
2014-01-15 17:15:39 -08:00
|
|
|
ast::LitStr(ref s, _) |
|
|
|
|
ast::LitFloat(ref s, _) |
|
|
|
|
ast::LitFloatUnsuffixed(ref s) => {
|
2014-01-10 14:02:36 -08:00
|
|
|
accumulator.push_str(s.get());
|
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::LitChar(c) => {
|
2014-10-14 23:05:01 -07:00
|
|
|
accumulator.push(c);
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
2014-08-05 09:59:03 +02:00
|
|
|
ast::LitInt(i, ast::UnsignedIntLit(_)) |
|
|
|
|
ast::LitInt(i, ast::SignedIntLit(_, ast::Plus)) |
|
|
|
|
ast::LitInt(i, ast::UnsuffixedIntLit(ast::Plus)) => {
|
2015-01-07 11:58:31 -05:00
|
|
|
accumulator.push_str(&format!("{}", i)[]);
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
2014-08-05 09:59:03 +02:00
|
|
|
ast::LitInt(i, ast::SignedIntLit(_, ast::Minus)) |
|
|
|
|
ast::LitInt(i, ast::UnsuffixedIntLit(ast::Minus)) => {
|
2015-01-07 11:58:31 -05:00
|
|
|
accumulator.push_str(&format!("-{}", i)[]);
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::LitBool(b) => {
|
2015-01-07 11:58:31 -05:00
|
|
|
accumulator.push_str(&format!("{}", b)[]);
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|
2014-06-06 16:04:04 +01:00
|
|
|
ast::LitByte(..) |
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::LitBinary(..) => {
|
2013-10-05 21:15:46 -07:00
|
|
|
cx.span_err(e.span, "cannot concatenate a binary literal");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
cx.span_err(e.span, "expected a literal");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 22:00:14 +10:00
|
|
|
base::MacExpr::new(cx.expr_str(
|
2014-04-02 16:54:22 -07:00
|
|
|
sp,
|
2015-01-07 11:58:31 -05:00
|
|
|
token::intern_and_get_ident(&accumulator[])))
|
2013-10-05 21:15:46 -07:00
|
|
|
}
|