Address nit: use doc-comments for fields of VarDecl

This commit is contained in:
Niko Matsakis 2016-03-23 04:21:02 -04:00
parent 14a5657a9a
commit a2bab6f3e1
1 changed files with 12 additions and 2 deletions

View File

@ -156,11 +156,21 @@ pub enum BorrowKind {
/// decl, a let, etc.
#[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
pub struct VarDecl<'tcx> {
/// `let mut x` vs `let x`
pub mutability: Mutability,
/// name that user gave the variable; not that, internally,
/// mir references variables by index
pub name: Name,
/// type inferred for this variable (`let x: ty = ...`)
pub ty: Ty<'tcx>,
pub scope: ScopeId, // scope in which variable was declared
pub span: Span, // span where variable was declared
/// scope in which variable was declared
pub scope: ScopeId,
/// span where variable was declared
pub span: Span,
}
/// A "temp" is a temporary that we place on the stack. They are