blob: 40bc90e510d14449f4ddc3ded3f88ac29aebb7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import option;
import base::*;
import syntax::ast;
fn expand_syntax_ext(cx: ext_ctxt, sp: codemap::span, arg: @ast::expr,
_body: option::t<str>) -> @ast::expr {
cx.print_backtrace();
std::io::stdout().write_line(print::pprust::expr_to_str(arg));
//trivial expression
ret @{id: cx.next_id(), node: ast::expr_rec([], option::none), span: sp};
}
|