about summary refs log tree commit diff
path: root/src/libsyntax/ext/log_syntax.rs
blob: 50fac765483dc525eec919f13006c1e3e3c37516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import base::*;
import io::writer_util;

fn expand_syntax_ext(cx: ext_ctxt, sp: codemap::span, arg: ast::mac_arg,
                     _body: ast::mac_body) -> @ast::expr {
    let args = get_mac_args_no_max(cx,sp,arg,0u,"log_syntax");
    cx.print_backtrace();
    io::stdout().write_line(
        str::connect(vec::map(args,
                              {|&&ex| print::pprust::expr_to_str(ex)}), ", ")
    );

    //trivial expression
    ret @{id: cx.next_id(), node: ast::expr_rec([]/~, option::none),
          span: sp};
}