2012-12-03 16:48:01 -08:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2013-01-08 19:37:25 -08:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
use ast;
|
|
|
|
use codemap;
|
2013-01-30 09:56:33 -08:00
|
|
|
use codemap::{CodeMap, span, ExpnInfo, ExpandedFrom, dummy_sp};
|
2012-12-23 17:41:37 -05:00
|
|
|
use diagnostic::span_handler;
|
|
|
|
use ext;
|
|
|
|
use parse;
|
|
|
|
use parse::{parser, token};
|
|
|
|
|
|
|
|
use core::io;
|
|
|
|
use core::vec;
|
2013-02-01 02:13:36 -05:00
|
|
|
use std::oldmap::HashMap;
|
2011-06-04 15:41:45 -04:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// new-style macro! tt code:
|
|
|
|
//
|
2013-01-22 16:45:27 -08:00
|
|
|
// SyntaxExpanderTT, SyntaxExpanderTTItem, MacResult,
|
|
|
|
// NormalTT, ItemTT
|
2012-07-27 17:42:32 -07:00
|
|
|
//
|
2012-12-12 12:25:40 -08:00
|
|
|
// also note that ast::mac used to have a bunch of extraneous cases and
|
|
|
|
// is now probably a redundant AST node, can be merged with
|
|
|
|
// ast::mac_invoc_tt.
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub struct MacroDef {
|
2013-01-17 08:55:28 -08:00
|
|
|
name: ~str,
|
2013-01-22 16:45:27 -08:00
|
|
|
ext: SyntaxExtension
|
2013-01-17 08:55:28 -08:00
|
|
|
}
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub type ItemDecorator =
|
2012-06-29 16:26:56 -07:00
|
|
|
fn@(ext_ctxt, span, ast::meta_item, ~[@ast::item]) -> ~[@ast::item];
|
2011-06-15 11:19:50 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub struct SyntaxExpanderTT {
|
2013-01-22 16:45:27 -08:00
|
|
|
expander: SyntaxExpanderTTFun,
|
|
|
|
span: Option<span>
|
2013-01-17 08:55:28 -08:00
|
|
|
}
|
|
|
|
|
2013-02-04 13:15:17 -08:00
|
|
|
pub type SyntaxExpanderTTFun
|
|
|
|
= fn@(ext_ctxt, span, ~[ast::token_tree]) -> MacResult;
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub struct SyntaxExpanderTTItem {
|
2013-01-22 16:45:27 -08:00
|
|
|
expander: SyntaxExpanderTTItemFun,
|
|
|
|
span: Option<span>
|
2013-01-17 08:55:28 -08:00
|
|
|
}
|
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub type SyntaxExpanderTTItemFun
|
2013-01-22 16:45:27 -08:00
|
|
|
= fn@(ext_ctxt, span, ast::ident, ~[ast::token_tree]) -> MacResult;
|
2012-07-06 14:29:50 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub enum MacResult {
|
2013-01-22 16:45:27 -08:00
|
|
|
MRExpr(@ast::expr),
|
|
|
|
MRItem(@ast::item),
|
|
|
|
MRAny(fn@()-> @ast::expr, fn@()-> Option<@ast::item>, fn@()->@ast::stmt),
|
2013-02-13 15:38:42 -08:00
|
|
|
MRDef(MacroDef)
|
2012-07-06 14:29:50 -07:00
|
|
|
}
|
2012-07-05 12:10:33 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub enum SyntaxExtension {
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2012-12-10 20:37:21 -08:00
|
|
|
// #[auto_encode] and such
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemDecorator(ItemDecorator),
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// Token-tree expanders
|
2013-01-22 16:45:27 -08:00
|
|
|
NormalTT(SyntaxExpanderTT),
|
2012-11-08 23:12:45 -05:00
|
|
|
|
|
|
|
// perhaps macro_rules! will lose its odd special identifier argument,
|
|
|
|
// and this can go away also
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemTT(SyntaxExpanderTTItem),
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
2011-06-04 15:41:45 -04:00
|
|
|
|
2013-02-13 20:08:35 -08:00
|
|
|
type SyntaxExtensions = HashMap<~str, SyntaxExtension>;
|
|
|
|
|
2011-06-04 15:41:45 -04:00
|
|
|
// A temporary hard-coded map of methods for expanding syntax extension
|
|
|
|
// AST nodes into full ASTs
|
2013-02-13 20:08:35 -08:00
|
|
|
pub fn syntax_expander_table() -> SyntaxExtensions {
|
2013-02-04 13:15:17 -08:00
|
|
|
// utility function to simplify creating NormalTT syntax extensions
|
2013-01-22 16:45:27 -08:00
|
|
|
fn builtin_normal_tt(f: SyntaxExpanderTTFun) -> SyntaxExtension {
|
|
|
|
NormalTT(SyntaxExpanderTT{expander: f, span: None})
|
2012-10-07 14:56:18 -07:00
|
|
|
}
|
2013-02-04 13:15:17 -08:00
|
|
|
// utility function to simplify creating ItemTT syntax extensions
|
2013-01-22 16:45:27 -08:00
|
|
|
fn builtin_item_tt(f: SyntaxExpanderTTItemFun) -> SyntaxExtension {
|
|
|
|
ItemTT(SyntaxExpanderTTItem{expander: f, span: None})
|
2012-10-07 14:56:18 -07:00
|
|
|
}
|
|
|
|
let syntax_expanders = HashMap();
|
|
|
|
syntax_expanders.insert(~"macro_rules",
|
|
|
|
builtin_item_tt(
|
|
|
|
ext::tt::macro_rules::add_new_extension));
|
2012-12-12 17:08:09 -08:00
|
|
|
syntax_expanders.insert(~"fmt",
|
|
|
|
builtin_normal_tt(ext::fmt::expand_syntax_ext));
|
2012-12-10 20:37:21 -08:00
|
|
|
syntax_expanders.insert(
|
|
|
|
~"auto_encode",
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemDecorator(ext::auto_encode::expand_auto_encode));
|
2012-12-10 20:37:21 -08:00
|
|
|
syntax_expanders.insert(
|
|
|
|
~"auto_decode",
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemDecorator(ext::auto_encode::expand_auto_decode));
|
2012-12-12 17:08:09 -08:00
|
|
|
syntax_expanders.insert(~"env",
|
|
|
|
builtin_normal_tt(ext::env::expand_syntax_ext));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"concat_idents",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::concat_idents::expand_syntax_ext));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"log_syntax",
|
2012-11-08 23:12:45 -05:00
|
|
|
builtin_normal_tt(
|
2012-10-07 14:56:18 -07:00
|
|
|
ext::log_syntax::expand_syntax_ext));
|
2012-11-19 18:05:50 -08:00
|
|
|
syntax_expanders.insert(~"deriving_eq",
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemDecorator(
|
2012-11-19 18:05:50 -08:00
|
|
|
ext::deriving::expand_deriving_eq));
|
2012-11-20 18:27:13 -08:00
|
|
|
syntax_expanders.insert(~"deriving_iter_bytes",
|
2013-01-22 16:45:27 -08:00
|
|
|
ItemDecorator(
|
2012-11-20 18:27:13 -08:00
|
|
|
ext::deriving::expand_deriving_iter_bytes));
|
2012-11-16 14:50:35 -08:00
|
|
|
|
|
|
|
// Quasi-quoting expanders
|
2013-02-04 13:15:17 -08:00
|
|
|
syntax_expanders.insert(~"quote_tokens",
|
|
|
|
builtin_normal_tt(ext::quote::expand_quote_tokens));
|
2012-11-16 14:50:35 -08:00
|
|
|
syntax_expanders.insert(~"quote_expr",
|
2012-11-19 20:31:22 -05:00
|
|
|
builtin_normal_tt(ext::quote::expand_quote_expr));
|
2012-12-06 11:09:46 -08:00
|
|
|
syntax_expanders.insert(~"quote_ty",
|
|
|
|
builtin_normal_tt(ext::quote::expand_quote_ty));
|
2012-11-16 14:50:35 -08:00
|
|
|
syntax_expanders.insert(~"quote_item",
|
2012-11-19 20:31:22 -05:00
|
|
|
builtin_normal_tt(ext::quote::expand_quote_item));
|
2012-11-16 14:50:35 -08:00
|
|
|
syntax_expanders.insert(~"quote_pat",
|
2012-11-19 20:31:22 -05:00
|
|
|
builtin_normal_tt(ext::quote::expand_quote_pat));
|
2012-11-16 14:50:35 -08:00
|
|
|
syntax_expanders.insert(~"quote_stmt",
|
2012-11-19 20:31:22 -05:00
|
|
|
builtin_normal_tt(ext::quote::expand_quote_stmt));
|
2012-11-16 14:50:35 -08:00
|
|
|
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"line",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_line));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"col",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_col));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"file",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_file));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"stringify",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_stringify));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"include",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_include));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"include_str",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_include_str));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"include_bin",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_include_bin));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"module_path",
|
2012-12-12 17:08:09 -08:00
|
|
|
builtin_normal_tt(
|
|
|
|
ext::source_util::expand_mod));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"proto",
|
|
|
|
builtin_item_tt(ext::pipes::expand_proto));
|
|
|
|
syntax_expanders.insert(
|
|
|
|
~"trace_macros",
|
2012-11-08 23:12:45 -05:00
|
|
|
builtin_normal_tt(ext::trace_macros::expand_trace_macros));
|
2012-10-07 14:56:18 -07:00
|
|
|
return syntax_expanders;
|
|
|
|
}
|
2012-07-27 17:42:32 -07:00
|
|
|
|
|
|
|
// One of these is made during expansion and incrementally updated as we go;
|
|
|
|
// when a macro expansion occurs, the resulting nodes have the backtrace()
|
|
|
|
// -> expn_info of their expansion context stored into their span.
|
2013-01-29 14:41:40 -08:00
|
|
|
pub trait ext_ctxt {
|
2013-02-04 14:02:01 -08:00
|
|
|
fn codemap(@mut self) -> @CodeMap;
|
|
|
|
fn parse_sess(@mut self) -> parse::parse_sess;
|
|
|
|
fn cfg(@mut self) -> ast::crate_cfg;
|
|
|
|
fn call_site(@mut self) -> span;
|
|
|
|
fn print_backtrace(@mut self);
|
|
|
|
fn backtrace(@mut self) -> Option<@ExpnInfo>;
|
|
|
|
fn mod_push(@mut self, mod_name: ast::ident);
|
|
|
|
fn mod_pop(@mut self);
|
|
|
|
fn mod_path(@mut self) -> ~[ast::ident];
|
|
|
|
fn bt_push(@mut self, ei: codemap::ExpnInfo);
|
|
|
|
fn bt_pop(@mut self);
|
|
|
|
fn span_fatal(@mut self, sp: span, msg: &str) -> !;
|
|
|
|
fn span_err(@mut self, sp: span, msg: &str);
|
|
|
|
fn span_warn(@mut self, sp: span, msg: &str);
|
|
|
|
fn span_unimpl(@mut self, sp: span, msg: &str) -> !;
|
|
|
|
fn span_bug(@mut self, sp: span, msg: &str) -> !;
|
|
|
|
fn bug(@mut self, msg: &str) -> !;
|
|
|
|
fn next_id(@mut self) -> ast::node_id;
|
|
|
|
pure fn trace_macros(@mut self) -> bool;
|
|
|
|
fn set_trace_macros(@mut self, x: bool);
|
2012-07-18 16:18:02 -07:00
|
|
|
/* for unhygienic identifier transformation */
|
2013-02-04 14:02:01 -08:00
|
|
|
fn str_of(@mut self, id: ast::ident) -> ~str;
|
|
|
|
fn ident_of(@mut self, st: ~str) -> ast::ident;
|
2011-08-05 13:06:11 -07:00
|
|
|
}
|
2011-07-10 17:00:28 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn mk_ctxt(parse_sess: parse::parse_sess,
|
|
|
|
cfg: ast::crate_cfg) -> ext_ctxt {
|
2013-02-04 14:02:01 -08:00
|
|
|
struct CtxtRepr {
|
|
|
|
parse_sess: parse::parse_sess,
|
|
|
|
cfg: ast::crate_cfg,
|
|
|
|
backtrace: Option<@ExpnInfo>,
|
|
|
|
mod_path: ~[ast::ident],
|
|
|
|
trace_mac: bool
|
|
|
|
}
|
2013-02-14 11:47:00 -08:00
|
|
|
impl ext_ctxt for CtxtRepr {
|
2013-02-04 14:02:01 -08:00
|
|
|
fn codemap(@mut self) -> @CodeMap { self.parse_sess.cm }
|
|
|
|
fn parse_sess(@mut self) -> parse::parse_sess { self.parse_sess }
|
|
|
|
fn cfg(@mut self) -> ast::crate_cfg { self.cfg }
|
|
|
|
fn call_site(@mut self) -> span {
|
2012-12-06 11:01:58 -08:00
|
|
|
match self.backtrace {
|
|
|
|
Some(@ExpandedFrom({call_site: cs, _})) => cs,
|
|
|
|
None => self.bug(~"missing top span")
|
|
|
|
}
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn print_backtrace(@mut self) { }
|
|
|
|
fn backtrace(@mut self) -> Option<@ExpnInfo> { self.backtrace }
|
|
|
|
fn mod_push(@mut self, i: ast::ident) { self.mod_path.push(i); }
|
|
|
|
fn mod_pop(@mut self) { self.mod_path.pop(); }
|
|
|
|
fn mod_path(@mut self) -> ~[ast::ident] { return self.mod_path; }
|
|
|
|
fn bt_push(@mut self, ei: codemap::ExpnInfo) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match ei {
|
2012-12-04 10:50:00 -08:00
|
|
|
ExpandedFrom({call_site: cs, callie: ref callie}) => {
|
2012-02-04 18:37:24 -07:00
|
|
|
self.backtrace =
|
2012-11-12 18:59:37 -08:00
|
|
|
Some(@ExpandedFrom({
|
2012-11-12 15:12:20 -08:00
|
|
|
call_site: span {lo: cs.lo, hi: cs.hi,
|
|
|
|
expn_info: self.backtrace},
|
2012-12-04 10:50:00 -08:00
|
|
|
callie: (*callie)}));
|
2012-02-04 18:37:24 -07:00
|
|
|
}
|
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn bt_pop(@mut self) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match self.backtrace {
|
2012-11-12 19:32:48 -08:00
|
|
|
Some(@ExpandedFrom({
|
|
|
|
call_site: span {expn_info: prev, _}, _
|
|
|
|
})) => {
|
2012-02-04 18:37:24 -07:00
|
|
|
self.backtrace = prev
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2012-08-03 19:59:04 -07:00
|
|
|
_ => self.bug(~"tried to pop without a push")
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn span_fatal(@mut self, sp: span, msg: &str) -> ! {
|
2012-01-13 09:32:05 +01:00
|
|
|
self.print_backtrace();
|
2012-03-22 18:53:30 -07:00
|
|
|
self.parse_sess.span_diagnostic.span_fatal(sp, msg);
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn span_err(@mut self, sp: span, msg: &str) {
|
2012-01-13 09:32:05 +01:00
|
|
|
self.print_backtrace();
|
2012-03-22 18:53:30 -07:00
|
|
|
self.parse_sess.span_diagnostic.span_err(sp, msg);
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn span_warn(@mut self, sp: span, msg: &str) {
|
2012-07-16 17:27:04 -07:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_warn(sp, msg);
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn span_unimpl(@mut self, sp: span, msg: &str) -> ! {
|
2012-01-13 09:32:05 +01:00
|
|
|
self.print_backtrace();
|
2012-03-22 18:53:30 -07:00
|
|
|
self.parse_sess.span_diagnostic.span_unimpl(sp, msg);
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn span_bug(@mut self, sp: span, msg: &str) -> ! {
|
2012-01-13 09:32:05 +01:00
|
|
|
self.print_backtrace();
|
2012-03-22 18:53:30 -07:00
|
|
|
self.parse_sess.span_diagnostic.span_bug(sp, msg);
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn bug(@mut self, msg: &str) -> ! {
|
2012-03-22 18:53:30 -07:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.handler().bug(msg);
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn next_id(@mut self) -> ast::node_id {
|
2012-08-01 17:30:05 -07:00
|
|
|
return parse::next_node_id(self.parse_sess);
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
pure fn trace_macros(@mut self) -> bool {
|
2012-08-15 10:45:10 -07:00
|
|
|
self.trace_mac
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn set_trace_macros(@mut self, x: bool) {
|
2012-08-15 10:45:10 -07:00
|
|
|
self.trace_mac = x
|
|
|
|
}
|
2012-07-18 16:18:02 -07:00
|
|
|
|
2013-02-04 14:02:01 -08:00
|
|
|
fn str_of(@mut self, id: ast::ident) -> ~str {
|
2012-07-18 16:18:02 -07:00
|
|
|
*self.parse_sess.interner.get(id)
|
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
fn ident_of(@mut self, st: ~str) -> ast::ident {
|
2012-07-18 16:18:02 -07:00
|
|
|
self.parse_sess.interner.intern(@st)
|
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-02-04 14:02:01 -08:00
|
|
|
let imp: @mut CtxtRepr = @mut CtxtRepr {
|
2012-03-22 18:53:30 -07:00
|
|
|
parse_sess: parse_sess,
|
|
|
|
cfg: cfg,
|
2013-02-04 14:02:01 -08:00
|
|
|
backtrace: None,
|
|
|
|
mod_path: ~[],
|
|
|
|
trace_mac: false
|
2012-03-22 18:53:30 -07:00
|
|
|
};
|
2013-02-15 01:15:53 -08:00
|
|
|
((imp) as @ext_ctxt)
|
2011-06-04 15:41:45 -04:00
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn expr_to_str(cx: ext_ctxt, expr: @ast::expr, err_msg: ~str) -> ~str {
|
2012-08-06 12:34:08 -07:00
|
|
|
match expr.node {
|
|
|
|
ast::expr_lit(l) => match l.node {
|
2012-08-03 19:59:04 -07:00
|
|
|
ast::lit_str(s) => return *s,
|
2012-11-06 18:41:06 -08:00
|
|
|
_ => cx.span_fatal(l.span, err_msg)
|
2012-08-06 17:14:32 -07:00
|
|
|
},
|
2012-11-06 18:41:06 -08:00
|
|
|
_ => cx.span_fatal(expr.span, err_msg)
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn expr_to_ident(cx: ext_ctxt,
|
|
|
|
expr: @ast::expr,
|
|
|
|
err_msg: ~str) -> ast::ident {
|
2012-08-06 12:34:08 -07:00
|
|
|
match expr.node {
|
2012-08-03 19:59:04 -07:00
|
|
|
ast::expr_path(p) => {
|
2012-04-23 13:04:46 +02:00
|
|
|
if vec::len(p.types) > 0u || vec::len(p.idents) != 1u {
|
2012-11-06 18:41:06 -08:00
|
|
|
cx.span_fatal(expr.span, err_msg);
|
|
|
|
}
|
|
|
|
return p.idents[0];
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2012-11-06 18:41:06 -08:00
|
|
|
_ => cx.span_fatal(expr.span, err_msg)
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn check_zero_tts(cx: ext_ctxt, sp: span, tts: &[ast::token_tree],
|
|
|
|
name: &str) {
|
2012-12-12 17:08:09 -08:00
|
|
|
if tts.len() != 0 {
|
|
|
|
cx.span_fatal(sp, fmt!("%s takes no arguments", name));
|
|
|
|
}
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn get_single_str_from_tts(cx: ext_ctxt,
|
|
|
|
sp: span,
|
|
|
|
tts: &[ast::token_tree],
|
|
|
|
name: &str) -> ~str {
|
2012-12-12 17:08:09 -08:00
|
|
|
if tts.len() != 1 {
|
|
|
|
cx.span_fatal(sp, fmt!("%s takes 1 argument.", name));
|
2012-02-01 00:20:31 -07:00
|
|
|
}
|
|
|
|
|
2012-12-12 17:08:09 -08:00
|
|
|
match tts[0] {
|
|
|
|
ast::tt_tok(_, token::LIT_STR(ident)) => cx.str_of(ident),
|
|
|
|
_ =>
|
|
|
|
cx.span_fatal(sp, fmt!("%s requires a string.", name))
|
2012-01-31 23:50:12 -07:00
|
|
|
}
|
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub fn get_exprs_from_tts(cx: ext_ctxt, tts: ~[ast::token_tree])
|
|
|
|
-> ~[@ast::expr] {
|
2012-12-12 17:08:09 -08:00
|
|
|
let p = parse::new_parser_from_tts(cx.parse_sess(),
|
|
|
|
cx.cfg(),
|
|
|
|
tts);
|
|
|
|
let mut es = ~[];
|
|
|
|
while p.token != token::EOF {
|
|
|
|
if es.len() != 0 {
|
|
|
|
p.eat(token::COMMA);
|
|
|
|
}
|
|
|
|
es.push(p.parse_expr());
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
2012-12-12 17:08:09 -08:00
|
|
|
es
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
|
|
|
|
2011-06-04 15:41:45 -04:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|