Skip to content

Commit e272f0b

Browse files
committed
---
yaml --- r: 63003 b: refs/heads/snap-stage3 c: b24b453 h: refs/heads/master i: 63001: 6f7ebb4 62999: c549c21 v: v3
1 parent 0080ff1 commit e272f0b

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: d7638f9dba5cef5c4db7b9008196ede4450d8521
4+
refs/heads/snap-stage3: b24b453e4aa63019560fe8894c333fe954a5126f
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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)