diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-02-23 17:45:44 -0800 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-02-24 19:52:29 -0800 |
| commit | f12ff1964b3040c426263d52472a9ed503c6a4aa (patch) | |
| tree | 0ffcf781c214ffefeff72d9fdecf0352dd23d818 /src/libsyntax | |
| parent | 4bc7672335bf29f28ef88fedaa4b1abaf370f691 (diff) | |
| download | rust-f12ff1964b3040c426263d52472a9ed503c6a4aa.tar.gz rust-f12ff1964b3040c426263d52472a9ed503c6a4aa.zip | |
std: minor whitespace cleanup
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 38 | ||||
| -rw-r--r-- | src/libsyntax/codemap.rs | 2 | ||||
| -rw-r--r-- | src/libsyntax/util/interner.rs | 6 |
3 files changed, 22 insertions, 24 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 0415748097c..c095cec1e7d 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -107,7 +107,7 @@ pub struct SCTable { pub static EMPTY_CTXT : SyntaxContext = 0; pub static ILLEGAL_CTXT : SyntaxContext = 1; -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub enum SyntaxContext_ { EmptyCtxt, Mark (Mrk,SyntaxContext), @@ -332,7 +332,7 @@ impl Eq for MetaItem_ { } } -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct Block { view_items: ~[ViewItem], stmts: ~[@Stmt], @@ -467,7 +467,7 @@ pub enum Stmt_ { // FIXME (pending discussion of #1697, #2178...): local should really be // a refinement on pat. /// Local represents a `let` statement, e.g., `let <pat>:<ty> = <expr>;` -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct Local { ty: P<Ty>, pat: @Pat, @@ -478,7 +478,7 @@ pub struct Local { pub type Decl = Spanned<Decl_>; -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub enum Decl_ { // a local (let) binding: DeclLocal(@Local), @@ -514,7 +514,7 @@ pub enum UnsafeSource { UserProvided, } -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct Expr { id: NodeId, node: Expr_, @@ -732,7 +732,7 @@ pub struct MutTy { mutbl: Mutability, } -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct TypeField { ident: Ident, mt: MutTy, @@ -836,7 +836,7 @@ impl fmt::Show for Onceness { } } -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct ClosureTy { sigil: Sigil, region: Option<Lifetime>, @@ -967,7 +967,7 @@ pub enum ExplicitSelf_ { pub type ExplicitSelf = Spanned<ExplicitSelf_>; -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct Method { ident: Ident, attrs: ~[Attribute], @@ -987,7 +987,7 @@ pub struct Mod { items: ~[@Item], } -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct ForeignMod { abis: AbiSet, view_items: ~[ViewItem], @@ -1074,14 +1074,14 @@ pub type Attribute = Spanned<Attribute_>; // Distinguishes between Attributes that decorate items and Attributes that // are contained as statements within items. These two cases need to be // distinguished for pretty-printing. -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub enum AttrStyle { AttrOuter, AttrInner, } // doc-comments are promoted to attributes that have is_sugared_doc = true -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct Attribute_ { style: AttrStyle, value: @MetaItem, @@ -1095,13 +1095,13 @@ pub struct Attribute_ { If this impl is an ItemImpl, the impl_id is redundant (it could be the same as the impl's node id). */ -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct TraitRef { path: Path, ref_id: NodeId, } -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub enum Visibility { Public, Private, @@ -1117,7 +1117,7 @@ impl Visibility { } } -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub struct StructField_ { kind: StructFieldKind, id: NodeId, @@ -1127,13 +1127,13 @@ pub struct StructField_ { pub type StructField = Spanned<StructField_>; -#[deriving(Clone, Eq, Encodable, Decodable,Hash)] +#[deriving(Clone, Eq, Encodable, Decodable, Hash)] pub enum StructFieldKind { NamedField(Ident, Visibility), UnnamedField // element of a tuple-like struct } -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct StructDef { fields: ~[StructField], /* fields, not including ctor */ /* ID of the constructor. This is only used for tuple- or enum-like @@ -1173,7 +1173,7 @@ pub enum Item_ { ItemMac(Mac), } -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub struct ForeignItem { ident: Ident, attrs: ~[Attribute], @@ -1183,7 +1183,7 @@ pub struct ForeignItem { vis: Visibility, } -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub enum ForeignItem_ { ForeignItemFn(P<FnDecl>, Generics), ForeignItemStatic(P<Ty>, /* is_mutbl */ bool), @@ -1192,7 +1192,7 @@ pub enum ForeignItem_ { // The data we save and restore about an inlined item or method. This is not // part of the AST that we parse from a file, but it becomes part of the tree // that we trans. -#[deriving(Eq, Encodable, Decodable,Hash)] +#[deriving(Eq, Encodable, Decodable, Hash)] pub enum InlinedItem { IIItem(@Item), IIMethod(DefId /* impl id */, bool /* is provided */, @Method), diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index 83700e390cb..2b1e8a354ea 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -38,7 +38,7 @@ pub struct BytePos(u32); /// A character offset. Because of multibyte utf8 characters, a byte offset /// is not equivalent to a character offset. The CodeMap will convert BytePos /// values to CharPos values as necessary. -#[deriving(Eq,Hash, Ord)] +#[deriving(Eq, Hash, Ord)] pub struct CharPos(uint); // FIXME: Lots of boilerplate in these impls, but so far my attempts to fix diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs index fa21924bbb9..4b5a05f4cb8 100644 --- a/src/libsyntax/util/interner.rs +++ b/src/libsyntax/util/interner.rs @@ -75,8 +75,7 @@ impl<T:Eq + Hash + Freeze + Clone + 'static> Interner<T> { vect.get().len() } - pub fn find_equiv<Q:Hash + Equiv<T>>(&self, val: &Q) - -> Option<Name> { + pub fn find_equiv<Q:Hash + Equiv<T>>(&self, val: &Q) -> Option<Name> { let map = self.map.borrow(); match map.get().find_equiv(val) { Some(v) => Some(*v), @@ -207,8 +206,7 @@ impl StrInterner { vect.get().len() } - pub fn find_equiv<Q:Hash + Equiv<RcStr>>(&self, val: &Q) - -> Option<Name> { + pub fn find_equiv<Q:Hash + Equiv<RcStr>>(&self, val: &Q) -> Option<Name> { let map = self.map.borrow(); match map.get().find_equiv(val) { Some(v) => Some(*v), |
