2012-09-10 15:38:28 -07:00
|
|
|
use std::map::HashMap;
|
2012-09-04 11:37:29 -07:00
|
|
|
use parse::parser;
|
|
|
|
use diagnostic::span_handler;
|
2012-10-15 14:56:42 -07:00
|
|
|
use codemap::{CodeMap, span, expn_info, expanded_from};
|
2012-11-12 15:12:20 -08:00
|
|
|
use ast_util::dummy_sp;
|
2011-06-04 15:41:45 -04:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// obsolete old-style #macro code:
|
|
|
|
//
|
|
|
|
// syntax_expander, normal, macro_defining, macro_definer,
|
|
|
|
// builtin
|
|
|
|
//
|
|
|
|
// new-style macro! tt code:
|
|
|
|
//
|
|
|
|
// syntax_expander_tt, syntax_expander_tt_item, mac_result,
|
|
|
|
// expr_tt, item_tt
|
|
|
|
//
|
|
|
|
// also note that ast::mac has way too many cases and can probably
|
|
|
|
// be trimmed down substantially.
|
|
|
|
|
2012-07-06 18:04:28 -07:00
|
|
|
// second argument is the span to blame for general argument problems
|
2012-02-04 18:37:24 -07:00
|
|
|
type syntax_expander_ =
|
2012-01-31 23:50:12 -07:00
|
|
|
fn@(ext_ctxt, span, ast::mac_arg, ast::mac_body) -> @ast::expr;
|
2012-07-06 18:04:28 -07:00
|
|
|
// second argument is the origin of the macro, if user-defined
|
2012-08-20 12:23:37 -07:00
|
|
|
type syntax_expander = {expander: syntax_expander_, span: Option<span>};
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2012-07-18 16:18:02 -07:00
|
|
|
type macro_def = {name: ~str, ext: syntax_extension};
|
2012-07-27 17:42:32 -07:00
|
|
|
|
|
|
|
// macro_definer is obsolete, remove when #old_macros go away.
|
2011-07-27 14:19:39 +02:00
|
|
|
type macro_definer =
|
2012-01-31 23:50:12 -07:00
|
|
|
fn@(ext_ctxt, span, ast::mac_arg, ast::mac_body) -> macro_def;
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2012-03-02 14:36:22 -08:00
|
|
|
type item_decorator =
|
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
|
|
|
|
2012-08-20 12:23:37 -07:00
|
|
|
type syntax_expander_tt = {expander: syntax_expander_tt_, span: Option<span>};
|
2012-07-06 18:04:28 -07:00
|
|
|
type syntax_expander_tt_ = fn@(ext_ctxt, span, ~[ast::token_tree])
|
|
|
|
-> mac_result;
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2012-07-05 12:10:33 -07:00
|
|
|
type syntax_expander_tt_item
|
2012-08-20 12:23:37 -07:00
|
|
|
= {expander: syntax_expander_tt_item_, span: Option<span>};
|
2012-07-05 12:10:33 -07:00
|
|
|
type syntax_expander_tt_item_
|
2012-07-06 18:04:28 -07:00
|
|
|
= fn@(ext_ctxt, span, ast::ident, ~[ast::token_tree]) -> mac_result;
|
2012-07-06 14:29:50 -07:00
|
|
|
|
|
|
|
enum mac_result {
|
2012-07-06 18:04:28 -07:00
|
|
|
mr_expr(@ast::expr),
|
2012-07-06 14:29:50 -07:00
|
|
|
mr_item(@ast::item),
|
|
|
|
mr_def(macro_def)
|
|
|
|
}
|
2012-07-05 12:10:33 -07:00
|
|
|
|
2012-01-19 14:24:03 -08:00
|
|
|
enum syntax_extension {
|
2012-07-27 17:42:32 -07:00
|
|
|
|
|
|
|
// normal() is obsolete, remove when #old_macros go away.
|
2012-01-19 17:56:05 -08:00
|
|
|
normal(syntax_expander),
|
2012-07-27 17:42:32 -07:00
|
|
|
|
|
|
|
// macro_defining() is obsolete, remove when #old_macros go away.
|
2012-01-19 17:56:05 -08:00
|
|
|
macro_defining(macro_definer),
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2012-10-08 17:34:16 -07:00
|
|
|
// #[auto_serialize] and such. will probably survive death of #old_macros
|
2012-03-02 14:36:22 -08:00
|
|
|
item_decorator(item_decorator),
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// Token-tree expanders
|
2012-07-06 18:04:28 -07:00
|
|
|
expr_tt(syntax_expander_tt),
|
2012-07-05 12:10:33 -07:00
|
|
|
item_tt(syntax_expander_tt_item),
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
2011-06-04 15:41:45 -04:00
|
|
|
|
|
|
|
// A temporary hard-coded map of methods for expanding syntax extension
|
|
|
|
// AST nodes into full ASTs
|
2012-10-07 14:56:18 -07:00
|
|
|
fn syntax_expander_table() -> HashMap<~str, syntax_extension> {
|
|
|
|
fn builtin(f: syntax_expander_) -> syntax_extension
|
|
|
|
{normal({expander: f, span: None})}
|
|
|
|
fn builtin_expr_tt(f: syntax_expander_tt_) -> syntax_extension {
|
|
|
|
expr_tt({expander: f, span: None})
|
|
|
|
}
|
|
|
|
fn builtin_item_tt(f: syntax_expander_tt_item_) -> syntax_extension {
|
|
|
|
item_tt({expander: f, span: None})
|
|
|
|
}
|
|
|
|
let syntax_expanders = HashMap();
|
|
|
|
syntax_expanders.insert(~"macro",
|
|
|
|
macro_defining(ext::simplext::add_new_extension));
|
|
|
|
syntax_expanders.insert(~"macro_rules",
|
|
|
|
builtin_item_tt(
|
|
|
|
ext::tt::macro_rules::add_new_extension));
|
|
|
|
syntax_expanders.insert(~"fmt", builtin(ext::fmt::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(
|
|
|
|
~"auto_serialize",
|
2012-10-07 16:33:20 -07:00
|
|
|
item_decorator(ext::auto_serialize::expand_auto_serialize));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(
|
|
|
|
~"auto_deserialize",
|
2012-10-07 16:33:20 -07:00
|
|
|
item_decorator(ext::auto_serialize::expand_auto_deserialize));
|
2012-10-07 14:56:18 -07:00
|
|
|
syntax_expanders.insert(~"env", builtin(ext::env::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"concat_idents",
|
|
|
|
builtin(ext::concat_idents::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"ident_to_str",
|
|
|
|
builtin(ext::ident_to_str::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"log_syntax",
|
|
|
|
builtin_expr_tt(
|
|
|
|
ext::log_syntax::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"ast",
|
|
|
|
builtin(ext::qquote::expand_ast));
|
|
|
|
syntax_expanders.insert(~"line",
|
|
|
|
builtin(ext::source_util::expand_line));
|
|
|
|
syntax_expanders.insert(~"col",
|
|
|
|
builtin(ext::source_util::expand_col));
|
|
|
|
syntax_expanders.insert(~"file",
|
|
|
|
builtin(ext::source_util::expand_file));
|
|
|
|
syntax_expanders.insert(~"stringify",
|
|
|
|
builtin(ext::source_util::expand_stringify));
|
|
|
|
syntax_expanders.insert(~"include",
|
|
|
|
builtin(ext::source_util::expand_include));
|
|
|
|
syntax_expanders.insert(~"include_str",
|
|
|
|
builtin(ext::source_util::expand_include_str));
|
|
|
|
syntax_expanders.insert(~"include_bin",
|
|
|
|
builtin(ext::source_util::expand_include_bin));
|
|
|
|
syntax_expanders.insert(~"module_path",
|
|
|
|
builtin(ext::source_util::expand_mod));
|
|
|
|
syntax_expanders.insert(~"proto",
|
|
|
|
builtin_item_tt(ext::pipes::expand_proto));
|
|
|
|
syntax_expanders.insert(
|
|
|
|
~"trace_macros",
|
|
|
|
builtin_expr_tt(ext::trace_macros::expand_trace_macros));
|
|
|
|
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.
|
2012-07-31 10:27:51 -07:00
|
|
|
trait ext_ctxt {
|
2012-11-12 16:56:39 -08:00
|
|
|
fn codemap() -> @CodeMap;
|
2012-04-17 23:34:48 -07:00
|
|
|
fn parse_sess() -> parse::parse_sess;
|
2012-03-22 18:53:30 -07:00
|
|
|
fn cfg() -> ast::crate_cfg;
|
2012-01-13 09:32:05 +01:00
|
|
|
fn print_backtrace();
|
2012-11-12 17:19:56 -08:00
|
|
|
fn backtrace() -> Option<@expn_info>;
|
2012-05-18 10:00:49 -07:00
|
|
|
fn mod_push(mod_name: ast::ident);
|
|
|
|
fn mod_pop();
|
2012-06-29 16:26:56 -07:00
|
|
|
fn mod_path() -> ~[ast::ident];
|
2012-11-12 17:19:56 -08:00
|
|
|
fn bt_push(ei: codemap::expn_info);
|
2012-01-13 09:32:05 +01:00
|
|
|
fn bt_pop();
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_fatal(sp: span, msg: &str) -> !;
|
|
|
|
fn span_err(sp: span, msg: &str);
|
|
|
|
fn span_warn(sp: span, msg: &str);
|
|
|
|
fn span_unimpl(sp: span, msg: &str) -> !;
|
|
|
|
fn span_bug(sp: span, msg: &str) -> !;
|
|
|
|
fn bug(msg: &str) -> !;
|
2012-01-13 09:32:05 +01:00
|
|
|
fn next_id() -> ast::node_id;
|
2012-08-15 10:45:10 -07:00
|
|
|
pure fn trace_macros() -> bool;
|
|
|
|
fn set_trace_macros(x: bool);
|
2012-07-18 16:18:02 -07:00
|
|
|
/* for unhygienic identifier transformation */
|
|
|
|
fn str_of(id: ast::ident) -> ~str;
|
|
|
|
fn ident_of(st: ~str) -> ast::ident;
|
2011-08-05 13:06:11 -07:00
|
|
|
}
|
2011-07-10 17:00:28 -07:00
|
|
|
|
2012-04-17 23:34:48 -07:00
|
|
|
fn mk_ctxt(parse_sess: parse::parse_sess,
|
2012-03-22 18:53:30 -07:00
|
|
|
cfg: ast::crate_cfg) -> ext_ctxt {
|
2012-04-17 23:34:48 -07:00
|
|
|
type ctxt_repr = {parse_sess: parse::parse_sess,
|
2012-03-22 18:53:30 -07:00
|
|
|
cfg: ast::crate_cfg,
|
2012-11-12 17:19:56 -08:00
|
|
|
mut backtrace: Option<@expn_info>,
|
2012-08-15 10:45:10 -07:00
|
|
|
mut mod_path: ~[ast::ident],
|
|
|
|
mut trace_mac: bool};
|
2012-08-07 18:10:06 -07:00
|
|
|
impl ctxt_repr: ext_ctxt {
|
2012-11-12 16:56:39 -08:00
|
|
|
fn codemap() -> @CodeMap { self.parse_sess.cm }
|
2012-04-17 23:34:48 -07:00
|
|
|
fn parse_sess() -> parse::parse_sess { self.parse_sess }
|
2012-03-22 18:53:30 -07:00
|
|
|
fn cfg() -> ast::crate_cfg { self.cfg }
|
2012-01-13 09:32:05 +01:00
|
|
|
fn print_backtrace() { }
|
2012-11-12 17:19:56 -08:00
|
|
|
fn backtrace() -> Option<@expn_info> { self.backtrace }
|
2012-09-26 17:33:34 -07:00
|
|
|
fn mod_push(i: ast::ident) { self.mod_path.push(i); }
|
2012-09-27 22:20:47 -07:00
|
|
|
fn mod_pop() { self.mod_path.pop(); }
|
2012-08-01 17:30:05 -07:00
|
|
|
fn mod_path() -> ~[ast::ident] { return self.mod_path; }
|
2012-11-12 17:19:56 -08:00
|
|
|
fn bt_push(ei: codemap::expn_info) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match ei {
|
2012-08-03 19:59:04 -07:00
|
|
|
expanded_from({call_site: cs, callie: callie}) => {
|
2012-02-04 18:37:24 -07:00
|
|
|
self.backtrace =
|
2012-08-20 12:23:37 -07:00
|
|
|
Some(@expanded_from({
|
2012-11-12 15:12:20 -08:00
|
|
|
call_site: span {lo: cs.lo, hi: cs.hi,
|
|
|
|
expn_info: self.backtrace},
|
2012-02-04 18:37:24 -07:00
|
|
|
callie: callie}));
|
|
|
|
}
|
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
fn bt_pop() {
|
2012-08-06 12:34:08 -07:00
|
|
|
match self.backtrace {
|
2012-11-12 15:12:20 -08:00
|
|
|
Some(@expanded_from({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
|
|
|
}
|
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_fatal(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
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_err(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
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_warn(sp: span, msg: &str) {
|
2012-07-16 17:27:04 -07:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_warn(sp, msg);
|
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_unimpl(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
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn span_bug(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);
|
|
|
|
}
|
2012-09-28 12:22:33 -07:00
|
|
|
fn bug(msg: &str) -> ! {
|
2012-03-22 18:53:30 -07:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.handler().bug(msg);
|
|
|
|
}
|
|
|
|
fn next_id() -> 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
|
|
|
}
|
2012-08-15 10:45:10 -07:00
|
|
|
pure fn trace_macros() -> bool {
|
|
|
|
self.trace_mac
|
|
|
|
}
|
|
|
|
fn set_trace_macros(x: bool) {
|
|
|
|
self.trace_mac = x
|
|
|
|
}
|
2012-07-18 16:18:02 -07:00
|
|
|
|
|
|
|
fn str_of(id: ast::ident) -> ~str {
|
|
|
|
*self.parse_sess.interner.get(id)
|
|
|
|
}
|
|
|
|
fn ident_of(st: ~str) -> ast::ident {
|
|
|
|
self.parse_sess.interner.intern(@st)
|
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2012-09-10 18:28:00 -07:00
|
|
|
let imp: ctxt_repr = {
|
2012-03-22 18:53:30 -07:00
|
|
|
parse_sess: parse_sess,
|
|
|
|
cfg: cfg,
|
2012-08-20 12:23:37 -07:00
|
|
|
mut backtrace: None,
|
2012-08-15 10:45:10 -07:00
|
|
|
mut mod_path: ~[],
|
|
|
|
mut trace_mac: false
|
2012-03-22 18:53:30 -07:00
|
|
|
};
|
2012-10-12 17:55:28 -07:00
|
|
|
move ((move imp) as ext_ctxt)
|
2011-06-04 15:41:45 -04:00
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2012-11-06 18:41:06 -08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-06 18:41:06 -08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-14 15:32:32 -07:00
|
|
|
fn get_mac_args_no_max(cx: ext_ctxt, sp: span, arg: ast::mac_arg,
|
2012-07-13 22:57:48 -07:00
|
|
|
min: uint, name: ~str) -> ~[@ast::expr] {
|
2012-08-20 12:23:37 -07:00
|
|
|
return get_mac_args(cx, sp, arg, min, None, name);
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_mac_args(cx: ext_ctxt, sp: span, arg: ast::mac_arg,
|
2012-08-20 12:23:37 -07:00
|
|
|
min: uint, max: Option<uint>, name: ~str) -> ~[@ast::expr] {
|
2012-08-06 12:34:08 -07:00
|
|
|
match arg {
|
2012-08-20 12:23:37 -07:00
|
|
|
Some(expr) => match expr.node {
|
2012-08-03 19:59:04 -07:00
|
|
|
ast::expr_vec(elts, _) => {
|
2012-05-14 15:32:32 -07:00
|
|
|
let elts_len = vec::len(elts);
|
2012-08-06 12:34:08 -07:00
|
|
|
match max {
|
2012-08-20 12:23:37 -07:00
|
|
|
Some(max) if ! (min <= elts_len && elts_len <= max) => {
|
2012-08-03 19:59:04 -07:00
|
|
|
cx.span_fatal(sp,
|
2012-10-12 12:32:36 -07:00
|
|
|
fmt!("%s! takes between %u and %u arguments.",
|
2012-08-22 17:24:52 -07:00
|
|
|
name, min, max));
|
2012-08-03 19:59:04 -07:00
|
|
|
}
|
2012-08-20 12:23:37 -07:00
|
|
|
None if ! (min <= elts_len) => {
|
2012-10-12 12:32:36 -07:00
|
|
|
cx.span_fatal(sp, fmt!("%s! needs at least %u arguments.",
|
2012-08-22 17:24:52 -07:00
|
|
|
name, min));
|
2012-08-03 19:59:04 -07:00
|
|
|
}
|
2012-07-18 16:18:02 -07:00
|
|
|
_ => return elts /* we are good */
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
}
|
2012-08-03 19:59:04 -07:00
|
|
|
_ => {
|
2012-10-12 12:32:36 -07:00
|
|
|
cx.span_fatal(sp, fmt!("%s!: malformed invocation", name))
|
2012-07-18 16:18:02 -07:00
|
|
|
}
|
2012-08-06 17:14:32 -07:00
|
|
|
},
|
2012-10-12 12:32:36 -07:00
|
|
|
None => cx.span_fatal(sp, fmt!("%s!: missing arguments", name))
|
2012-02-01 00:20:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-31 23:50:12 -07:00
|
|
|
fn get_mac_body(cx: ext_ctxt, sp: span, args: ast::mac_body)
|
|
|
|
-> ast::mac_body_
|
|
|
|
{
|
2012-08-06 12:34:08 -07:00
|
|
|
match (args) {
|
2012-08-20 12:23:37 -07:00
|
|
|
Some(body) => body,
|
|
|
|
None => cx.span_fatal(sp, ~"missing macro body")
|
2012-01-31 23:50:12 -07:00
|
|
|
}
|
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// Massage syntactic form of new-style arguments to internal representation
|
|
|
|
// of old-style macro args, such that old-style macro can be run and invoked
|
|
|
|
// using new syntax. This will be obsolete when #old_macros go away.
|
2012-07-12 17:59:59 -07:00
|
|
|
fn tt_args_to_original_flavor(cx: ext_ctxt, sp: span, arg: ~[ast::token_tree])
|
|
|
|
-> ast::mac_arg {
|
2012-09-07 18:08:21 -07:00
|
|
|
use ast::{matcher, matcher_, match_tok, match_seq, match_nonterminal};
|
|
|
|
use parse::lexer::{new_tt_reader, reader};
|
|
|
|
use tt::macro_parser::{parse_or_else, matched_seq,
|
2012-08-24 18:19:39 -07:00
|
|
|
matched_nonterminal};
|
2012-07-12 17:59:59 -07:00
|
|
|
|
|
|
|
// these spans won't matter, anyways
|
|
|
|
fn ms(m: matcher_) -> matcher {
|
2012-11-12 15:12:20 -08:00
|
|
|
{node: m, span: dummy_sp()}
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
2012-07-18 16:18:02 -07:00
|
|
|
let arg_nm = cx.parse_sess().interner.gensym(@~"arg");
|
2012-07-12 17:59:59 -07:00
|
|
|
|
2012-07-27 19:14:46 -07:00
|
|
|
let argument_gram = ~[ms(match_seq(~[
|
2012-07-18 16:18:02 -07:00
|
|
|
ms(match_nonterminal(arg_nm, parse::token::special_idents::expr, 0u))
|
2012-08-20 12:23:37 -07:00
|
|
|
], Some(parse::token::COMMA), true, 0u, 1u))];
|
2012-07-12 17:59:59 -07:00
|
|
|
|
|
|
|
let arg_reader = new_tt_reader(cx.parse_sess().span_diagnostic,
|
2012-08-20 12:23:37 -07:00
|
|
|
cx.parse_sess().interner, None, arg);
|
2012-07-12 17:59:59 -07:00
|
|
|
let args =
|
2012-08-06 12:34:08 -07:00
|
|
|
match parse_or_else(cx.parse_sess(), cx.cfg(), arg_reader as reader,
|
2012-07-18 16:18:02 -07:00
|
|
|
argument_gram).get(arg_nm) {
|
|
|
|
@matched_seq(s, _) => {
|
|
|
|
do s.map() |lf| {
|
2012-09-21 18:43:30 -07:00
|
|
|
match *lf {
|
2012-07-18 16:18:02 -07:00
|
|
|
@matched_nonterminal(parse::token::nt_expr(arg)) =>
|
|
|
|
arg, /* whew! list of exprs, here we come! */
|
|
|
|
_ => fail ~"badly-structured parse result"
|
|
|
|
}
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
2012-08-06 17:14:32 -07:00
|
|
|
},
|
2012-08-03 19:59:04 -07:00
|
|
|
_ => fail ~"badly-structured parse result"
|
2012-07-12 17:59:59 -07:00
|
|
|
};
|
|
|
|
|
2012-08-20 12:23:37 -07:00
|
|
|
return Some(@{id: parse::next_node_id(cx.parse_sess()),
|
2012-07-12 17:59:59 -07:00
|
|
|
callee_id: parse::next_node_id(cx.parse_sess()),
|
|
|
|
node: ast::expr_vec(args, ast::m_imm), span: sp});
|
|
|
|
}
|
|
|
|
|
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:
|
|
|
|
//
|