diff options
| author | Michael Woerister <michaelwoerister@gmail> | 2013-07-27 10:25:59 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@gmail> | 2013-07-29 16:16:48 +0200 |
| commit | 8a329770b6d0bc526e5873c143a5db1b551d42c1 (patch) | |
| tree | 8536d97806e765d2483cd5cf30ed9c506a13f1b5 /src/libsyntax/parse/classify.rs | |
| parent | 27812ea5e025ed36dc80379b86bb249b33c528a2 (diff) | |
| download | rust-8a329770b6d0bc526e5873c143a5db1b551d42c1.tar.gz rust-8a329770b6d0bc526e5873c143a5db1b551d42c1.zip | |
New naming convention for ast::{node_id, local_crate, crate_node_id, blk_check_mode, ty_field, ty_method}
Diffstat (limited to 'src/libsyntax/parse/classify.rs')
| -rw-r--r-- | src/libsyntax/parse/classify.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/classify.rs b/src/libsyntax/parse/classify.rs index e31b0ccff80..c7c556c9728 100644 --- a/src/libsyntax/parse/classify.rs +++ b/src/libsyntax/parse/classify.rs @@ -39,7 +39,7 @@ pub fn expr_requires_semi_to_be_stmt(e: @ast::expr) -> bool { pub fn expr_is_simple_block(e: @ast::expr) -> bool { match e.node { ast::expr_block( - ast::Block { rules: ast::default_blk, _ } + ast::Block { rules: ast::DefaultBlock, _ } ) => true, _ => false } |
