Removed remnants of @mut and ~mut from comments and the type system.

This commit is contained in:
Eduard Burtescu 2014-01-12 02:25:51 +02:00
parent 68ebe8141a
commit 509fc92a9b
39 changed files with 191 additions and 262 deletions

View file

@ -960,10 +960,10 @@ pub enum RetStyle {
#[deriving(Clone, Eq, Encodable, Decodable, IterBytes)]
pub enum ExplicitSelf_ {
SelfStatic, // no self
SelfValue(Mutability), // `self`
SelfRegion(Option<Lifetime>, Mutability), // `&'lt self`
SelfBox(Mutability), // `@self`
SelfUniq(Mutability) // `~self`
SelfValue(Mutability), // `self`, `mut self`
SelfRegion(Option<Lifetime>, Mutability), // `&'lt self`, `&'lt mut self`
SelfBox, // `@self`
SelfUniq(Mutability) // `~self`, `mut ~self`
}
pub type ExplicitSelf = Spanned<ExplicitSelf_>;