Formatting cleanups.
This commit is contained in:
parent
9090a5c03b
commit
35a199c036
@ -38,7 +38,7 @@ fn new_filemap_w_substr(filename: filename, substr: file_substr,
|
|||||||
fn new_filemap(filename: filename, src: @str,
|
fn new_filemap(filename: filename, src: @str,
|
||||||
start_pos_ch: uint, start_pos_byte: uint)
|
start_pos_ch: uint, start_pos_byte: uint)
|
||||||
-> filemap {
|
-> filemap {
|
||||||
ret new_filemap_w_substr(filename, none, src,
|
ret new_filemap_w_substr(filename, none, src,
|
||||||
start_pos_ch, start_pos_byte);
|
start_pos_ch, start_pos_byte);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,23 +43,25 @@ fn is_space(c: char) -> bool {
|
|||||||
syntax::parse::lexer::is_whitespace(c)
|
syntax::parse::lexer::is_whitespace(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn expand_ast(ecx: ext_ctxt, _sp: span, _arg: ast::mac_arg, body: ast::mac_body)
|
fn expand_ast(ecx: ext_ctxt, _sp: span, _arg:
|
||||||
-> @ast::expr
|
ast::mac_arg, body: ast::mac_body)
|
||||||
|
-> @ast::expr
|
||||||
{
|
{
|
||||||
let body = get_mac_body(ecx,_sp,body);
|
let body = get_mac_body(ecx,_sp,body);
|
||||||
let str = @codemap::span_to_snippet(body.span, ecx.session().parse_sess.cm);
|
let cm = ecx.session().parse_sess.cm;
|
||||||
let (fname, ss) = codemap::get_substr_info(ecx.session().parse_sess.cm,
|
let str = @codemap::span_to_snippet(body.span, cm);
|
||||||
|
let (fname, ss) = codemap::get_substr_info(cm,
|
||||||
body.span.lo, body.span.hi);
|
body.span.lo, body.span.hi);
|
||||||
let {node: e, _} = parse_from_source_str(parser::parse_expr,
|
let {node: e, _} = parse_from_source_str(parser::parse_expr,
|
||||||
fname, some(ss), str,
|
fname, some(ss), str,
|
||||||
ecx.session().opts.cfg,
|
ecx.session().opts.cfg,
|
||||||
ecx.session().parse_sess);
|
ecx.session().parse_sess);
|
||||||
ret expand_qquote(ecx, e.span, some(*str), e);
|
ret expand_qquote(ecx, e.span, some(*str), e);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn expand_qquote(ecx: ext_ctxt, sp: span, maybe_str: option::t<str>,
|
fn expand_qquote(ecx: ext_ctxt, sp: span, maybe_str: option::t<str>,
|
||||||
e: @ast::expr)
|
e: @ast::expr)
|
||||||
-> @ast::expr
|
-> @ast::expr
|
||||||
{
|
{
|
||||||
let str = alt(maybe_str) {
|
let str = alt(maybe_str) {
|
||||||
some(s) {s}
|
some(s) {s}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user