2011-06-04 15:41:45 -04:00
|
|
|
import std::map::hashmap;
|
2012-03-29 13:48:05 -07:00
|
|
|
import parse::parser;
|
|
|
|
import diagnostic::span_handler;
|
2012-03-22 18:53:30 -07:00
|
|
|
import codemap::{codemap, span, expn_info, expanded_from};
|
2012-03-14 12:07:23 -07:00
|
|
|
import std::map::str_hash;
|
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-06-25 15:04:50 -07:00
|
|
|
type syntax_expander = {expander: syntax_expander_, span: option<span>};
|
|
|
|
|
2012-06-10 00:49:59 -07:00
|
|
|
type macro_def = {ident: ast::ident, 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-06-25 15:04:50 -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
|
|
|
|
= {expander: syntax_expander_tt_item_, span: option<span>};
|
|
|
|
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
|
|
|
|
|
|
|
// #[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-07-13 22:57:48 -07:00
|
|
|
fn syntax_expander_table() -> hashmap<~str, syntax_extension> {
|
2012-02-04 18:37:24 -07:00
|
|
|
fn builtin(f: syntax_expander_) -> syntax_extension
|
|
|
|
{normal({expander: f, span: none})}
|
2012-07-05 12:10:33 -07:00
|
|
|
fn builtin_item_tt(f: syntax_expander_tt_item_) -> syntax_extension {
|
|
|
|
item_tt({expander: f, span: none})
|
|
|
|
}
|
2012-03-14 12:07:23 -07:00
|
|
|
let syntax_expanders = str_hash::<syntax_extension>();
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"macro",
|
2012-07-06 18:04:28 -07:00
|
|
|
macro_defining(ext::simplext::add_new_extension));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"macro_rules",
|
2012-07-06 18:04:28 -07:00
|
|
|
builtin_item_tt(
|
|
|
|
ext::tt::macro_rules::add_new_extension));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"fmt", builtin(ext::fmt::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"auto_serialize",
|
2012-03-12 10:19:35 -07:00
|
|
|
item_decorator(ext::auto_serialize::expand));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"env", builtin(ext::env::expand_syntax_ext));
|
|
|
|
syntax_expanders.insert(~"concat_idents",
|
2012-02-04 18:37:24 -07:00
|
|
|
builtin(ext::concat_idents::expand_syntax_ext));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"ident_to_str",
|
2012-02-04 18:37:24 -07:00
|
|
|
builtin(ext::ident_to_str::expand_syntax_ext));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"log_syntax",
|
2012-02-04 18:37:24 -07:00
|
|
|
builtin(ext::log_syntax::expand_syntax_ext));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"ast",
|
2012-02-04 18:37:24 -07:00
|
|
|
builtin(ext::qquote::expand_ast));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"line",
|
2012-05-14 17:43:31 -07:00
|
|
|
builtin(ext::source_util::expand_line));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"col",
|
2012-05-14 17:43:31 -07:00
|
|
|
builtin(ext::source_util::expand_col));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"file",
|
2012-05-14 17:43:31 -07:00
|
|
|
builtin(ext::source_util::expand_file));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"stringify",
|
2012-05-14 17:43:31 -07:00
|
|
|
builtin(ext::source_util::expand_stringify));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"include",
|
2012-05-14 17:43:31 -07:00
|
|
|
builtin(ext::source_util::expand_include));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"include_str",
|
2012-05-18 10:02:21 -07:00
|
|
|
builtin(ext::source_util::expand_include_str));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"include_bin",
|
2012-05-18 10:03:27 -07:00
|
|
|
builtin(ext::source_util::expand_include_bin));
|
2012-07-27 11:19:21 -07:00
|
|
|
syntax_expanders.insert(~"module",
|
2012-05-18 10:00:49 -07:00
|
|
|
builtin(ext::source_util::expand_mod));
|
2012-07-13 22:57:48 -07:00
|
|
|
syntax_expanders.insert(~"proto",
|
2012-07-05 12:10:33 -07:00
|
|
|
builtin_item_tt(ext::pipes::expand_proto));
|
2011-06-04 15:41:45 -04:00
|
|
|
ret 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-01-13 09:32:05 +01:00
|
|
|
iface ext_ctxt {
|
2012-03-22 18:53:30 -07: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-02-04 18:37:24 -07:00
|
|
|
fn backtrace() -> 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-02-04 18:37:24 -07:00
|
|
|
fn bt_push(ei: codemap::expn_info_);
|
2012-01-13 09:32:05 +01:00
|
|
|
fn bt_pop();
|
2012-07-13 22:57:48 -07:00
|
|
|
fn span_fatal(sp: span, msg: ~str) -> !;
|
|
|
|
fn span_err(sp: span, msg: ~str);
|
2012-07-16 17:27:04 -07:00
|
|
|
fn span_warn(sp: span, msg: ~str);
|
2012-07-13 22:57:48 -07:00
|
|
|
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;
|
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-05-18 10:00:49 -07:00
|
|
|
mut backtrace: expn_info,
|
2012-06-29 16:26:56 -07:00
|
|
|
mut mod_path: ~[ast::ident]};
|
2012-01-13 09:32:05 +01:00
|
|
|
impl of ext_ctxt for ctxt_repr {
|
2012-03-22 18:53:30 -07: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-02-04 18:37:24 -07:00
|
|
|
fn backtrace() -> expn_info { self.backtrace }
|
2012-05-18 10:00:49 -07:00
|
|
|
fn mod_push(i: ast::ident) { vec::push(self.mod_path, i); }
|
|
|
|
fn mod_pop() { vec::pop(self.mod_path); }
|
2012-06-29 16:26:56 -07:00
|
|
|
fn mod_path() -> ~[ast::ident] { ret self.mod_path; }
|
2012-02-04 18:37:24 -07:00
|
|
|
fn bt_push(ei: codemap::expn_info_) {
|
|
|
|
alt ei {
|
|
|
|
expanded_from({call_site: cs, callie: callie}) {
|
|
|
|
self.backtrace =
|
|
|
|
some(@expanded_from({
|
|
|
|
call_site: {lo: cs.lo, hi: cs.hi,
|
|
|
|
expn_info: self.backtrace},
|
|
|
|
callie: callie}));
|
|
|
|
}
|
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
fn bt_pop() {
|
|
|
|
alt self.backtrace {
|
2012-02-04 18:37:24 -07:00
|
|
|
some(@expanded_from({call_site: {expn_info: prev, _}, _})) {
|
|
|
|
self.backtrace = prev
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2012-07-13 22:57:48 -07:00
|
|
|
_ { self.bug(~"tried to pop without a push"); }
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
}
|
2012-07-13 22:57:48 -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-07-13 22:57:48 -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-07-16 17:27:04 -07:00
|
|
|
fn span_warn(sp: span, msg: ~str) {
|
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_warn(sp, msg);
|
|
|
|
}
|
2012-07-13 22:57:48 -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-07-13 22:57:48 -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-07-13 22:57:48 -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-04-17 23:34:48 -07:00
|
|
|
ret parse::next_node_id(self.parse_sess);
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
}
|
2012-03-22 18:53:30 -07:00
|
|
|
let imp : ctxt_repr = {
|
|
|
|
parse_sess: parse_sess,
|
|
|
|
cfg: cfg,
|
2012-05-18 10:00:49 -07:00
|
|
|
mut backtrace: none,
|
2012-06-29 16:26:56 -07:00
|
|
|
mut mod_path: ~[]
|
2012-03-22 18:53:30 -07:00
|
|
|
};
|
2012-02-04 18:37:24 -07:00
|
|
|
ret imp as ext_ctxt
|
2011-06-04 15:41:45 -04:00
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
fn expr_to_str(cx: ext_ctxt, expr: @ast::expr, error: ~str) -> ~str {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt expr.node {
|
|
|
|
ast::expr_lit(l) {
|
|
|
|
alt l.node {
|
2012-06-10 00:49:59 -07:00
|
|
|
ast::lit_str(s) { ret *s; }
|
2011-07-27 14:19:39 +02:00
|
|
|
_ { cx.span_fatal(l.span, error); }
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
_ { cx.span_fatal(expr.span, error); }
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
fn expr_to_ident(cx: ext_ctxt, expr: @ast::expr, error: ~str) -> ast::ident {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt expr.node {
|
|
|
|
ast::expr_path(p) {
|
2012-04-23 13:04:46 +02:00
|
|
|
if vec::len(p.types) > 0u || vec::len(p.idents) != 1u {
|
2011-06-20 17:26:17 -07:00
|
|
|
cx.span_fatal(expr.span, error);
|
2012-04-23 13:04:46 +02:00
|
|
|
} else { ret p.idents[0]; }
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
_ { cx.span_fatal(expr.span, error); }
|
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-05-14 15:32:32 -07:00
|
|
|
ret get_mac_args(cx, sp, arg, min, none, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_mac_args(cx: ext_ctxt, sp: span, arg: ast::mac_arg,
|
2012-07-13 22:57:48 -07:00
|
|
|
min: uint, max: option<uint>, name: ~str) -> ~[@ast::expr] {
|
2012-05-14 15:32:32 -07:00
|
|
|
alt arg {
|
|
|
|
some(expr) {
|
|
|
|
alt expr.node {
|
|
|
|
ast::expr_vec(elts, _) {
|
|
|
|
let elts_len = vec::len(elts);
|
|
|
|
alt max {
|
|
|
|
some(max) if ! (min <= elts_len && elts_len <= max) {
|
|
|
|
cx.span_fatal(sp,
|
2012-07-30 16:01:07 -07:00
|
|
|
fmt!{"#%s takes between %u and %u arguments.",
|
|
|
|
name, min, max});
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
none if ! (min <= elts_len) {
|
2012-07-30 16:01:07 -07:00
|
|
|
cx.span_fatal(sp, fmt!{"#%s needs at least %u arguments.",
|
|
|
|
name, min});
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
_ { ret elts; /* we're good */}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ {
|
2012-07-30 16:01:07 -07:00
|
|
|
cx.span_fatal(sp, fmt!{"#%s: malformed invocation", name})
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-30 16:01:07 -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_
|
|
|
|
{
|
|
|
|
alt (args) {
|
|
|
|
some(body) {body}
|
2012-07-13 22:57:48 -07:00
|
|
|
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-07-27 19:14:46 -07:00
|
|
|
import ast::{matcher, matcher_, match_tok, match_seq, match_nonterminal};
|
2012-07-12 17:59:59 -07:00
|
|
|
import parse::lexer::{new_tt_reader, tt_reader_as_reader, reader};
|
2012-07-27 19:14:46 -07:00
|
|
|
import tt::earley_parser::{parse_or_else, matched_seq,
|
|
|
|
matched_nonterminal};
|
2012-07-12 17:59:59 -07:00
|
|
|
|
|
|
|
// these spans won't matter, anyways
|
|
|
|
fn ms(m: matcher_) -> matcher {
|
|
|
|
{node: m, span: {lo: 0u, hi: 0u, expn_info: none}}
|
|
|
|
}
|
|
|
|
|
2012-07-27 19:14:46 -07:00
|
|
|
let argument_gram = ~[ms(match_seq(~[
|
|
|
|
ms(match_nonterminal(@~"arg",@~"expr", 0u))
|
2012-07-12 17:59:59 -07:00
|
|
|
], some(parse::token::COMMA), true, 0u, 1u))];
|
|
|
|
|
|
|
|
let arg_reader = new_tt_reader(cx.parse_sess().span_diagnostic,
|
|
|
|
cx.parse_sess().interner, none, arg);
|
|
|
|
let args =
|
|
|
|
alt parse_or_else(cx.parse_sess(), cx.cfg(), arg_reader as reader,
|
|
|
|
argument_gram).get(@~"arg") {
|
2012-07-27 19:14:46 -07:00
|
|
|
@matched_seq(s, _) {
|
2012-07-12 17:59:59 -07:00
|
|
|
do s.map() |lf| {
|
|
|
|
alt lf {
|
2012-07-27 19:14:46 -07:00
|
|
|
@matched_nonterminal(parse::token::nt_expr(arg)) {
|
2012-07-12 17:59:59 -07:00
|
|
|
arg /* whew! list of exprs, here we come! */
|
|
|
|
}
|
|
|
|
_ { fail ~"badly-structured parse result"; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ { fail ~"badly-structured parse result"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
ret some(@{id: parse::next_node_id(cx.parse_sess()),
|
|
|
|
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:
|
|
|
|
//
|