comments & whitespace

This commit is contained in:
John Clements 2013-05-07 09:38:48 -07:00
parent d7638f9dba
commit b24b453e4a
1 changed files with 3 additions and 0 deletions

View File

@ -385,6 +385,7 @@ pub type stmt = spanned<stmt_>;
#[deriving(Eq, Encodable, Decodable)]
pub enum stmt_ {
// could be an item or a local (let) binding:
stmt_decl(@decl, node_id),
// expr without trailing semi-colon (must have unit type):
@ -414,7 +415,9 @@ pub type decl = spanned<decl_>;
#[deriving(Eq, Encodable, Decodable)]
pub enum decl_ {
// a local (let) binding:
decl_local(@local),
// an item binding:
decl_item(@item),
}