Removed remnants of @mut and ~mut from comments and the type system.
This commit is contained in:
parent
68ebe8141a
commit
509fc92a9b
39 changed files with 191 additions and 262 deletions
|
|
@ -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_>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue