File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
branches/snap-stage3/src/libsyntax Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: d7638f9dba5cef5c4db7b9008196ede4450d8521
4
+ refs/heads/snap-stage3: b24b453e4aa63019560fe8894c333fe954a5126f
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -385,6 +385,7 @@ pub type stmt = spanned<stmt_>;
385
385
386
386
#[ deriving( Eq , Encodable , Decodable ) ]
387
387
pub enum stmt_ {
388
+ // could be an item or a local (let) binding:
388
389
stmt_decl( @decl , node_id ) ,
389
390
390
391
// expr without trailing semi-colon (must have unit type):
@@ -414,7 +415,9 @@ pub type decl = spanned<decl_>;
414
415
415
416
#[ deriving( Eq , Encodable , Decodable ) ]
416
417
pub enum decl_ {
418
+ // a local (let) binding:
417
419
decl_local( @local ) ,
420
+ // an item binding:
418
421
decl_item( @item) ,
419
422
}
420
423
You can’t perform that action at this time.
0 commit comments