File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
branches/dist-snap/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 @@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
9
refs/heads/incoming: b50030718cf28f2a5a81857a26b57442734fe854
10
- refs/heads/dist-snap: d7638f9dba5cef5c4db7b9008196ede4450d8521
10
+ refs/heads/dist-snap: b24b453e4aa63019560fe8894c333fe954a5126f
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
13
13
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
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