diff options
| author | Michael Woerister <michaelwoerister@gmail> | 2013-07-16 20:08:35 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@gmail> | 2013-07-17 08:21:46 +0200 |
| commit | 0cc70743d2cf6edb782c1daa9b0f554484ed21eb (patch) | |
| tree | 578d226937e919d49b30825b4a6b3dcaa44cee0f /src/libsyntax/parse/mod.rs | |
| parent | 4bd716ac8eb60dbaced9e3d2bafee89b713a7849 (diff) | |
| download | rust-0cc70743d2cf6edb782c1daa9b0f554484ed21eb.tar.gz rust-0cc70743d2cf6edb782c1daa9b0f554484ed21eb.zip | |
Made ast::blk not use spanned<T> anymore.
Diffstat (limited to 'src/libsyntax/parse/mod.rs')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index 75d1f35bf38..40f1964bc9c 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -557,27 +557,26 @@ mod test { lifetimes: opt_vec::Empty, ty_params: opt_vec::Empty, }, - spanned{ + ast::blk { + view_items: ~[], + stmts: ~[@spanned{ + node: ast::stmt_semi(@ast::expr{ + id: 6, + node: ast::expr_path( + ast::Path{ + span:sp(17,18), + global:false, + idents:~[str_to_ident("b")], + rp:None, + types: ~[]}), + span: sp(17,18)}, + 7), // fixme + span: sp(17,18)}], + expr: None, + id: 8, // fixme + rules: ast::default_blk, // no idea span: sp(15,21), - node: ast::blk_{ - view_items: ~[], - stmts: ~[@spanned{ - node: ast::stmt_semi(@ast::expr{ - id: 6, - node: ast::expr_path( - ast::Path{ - span:sp(17,18), - global:false, - idents:~[str_to_ident("b")], - rp:None, - types: ~[]}), - span: sp(17,18)}, - 7), // fixme - span: sp(17,18)}], - expr: None, - id: 8, // fixme - rules: ast::default_blk // no idea - }}), + }), vis: ast::inherited, span: sp(0,21)})); } |
