Skip to content

Commit d50f3f3

Browse files
committed
---
yaml --- r: 73727 b: refs/heads/dist-snap c: b24b453 h: refs/heads/master i: 73725: cb53318 73723: 77ed2c5 73719: 60789df 73711: 21d25d3 73695: a50654e 73663: 1e93c05 73599: 9205aa0 73471: 50d5f8a 73215: 9e7beb4 72703: 74ff6cc 71679: 4addab6 69631: 459a954 65535: 51466fe v: v3
1 parent ecb8e5f commit d50f3f3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: b50030718cf28f2a5a81857a26b57442734fe854
10-
refs/heads/dist-snap: d7638f9dba5cef5c4db7b9008196ede4450d8521
10+
refs/heads/dist-snap: b24b453e4aa63019560fe8894c333fe954a5126f
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libsyntax/ast.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ pub type stmt = spanned<stmt_>;
385385

386386
#[deriving(Eq, Encodable, Decodable)]
387387
pub enum stmt_ {
388+
// could be an item or a local (let) binding:
388389
stmt_decl(@decl, node_id),
389390

390391
// expr without trailing semi-colon (must have unit type):
@@ -414,7 +415,9 @@ pub type decl = spanned<decl_>;
414415

415416
#[deriving(Eq, Encodable, Decodable)]
416417
pub enum decl_ {
418+
// a local (let) binding:
417419
decl_local(@local),
420+
// an item binding:
418421
decl_item(@item),
419422
}
420423

0 commit comments

Comments
 (0)