about summary refs log tree commit diff
path: root/src/libsyntax/visit.rs
AgeCommit message (Expand)AuthorLines
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-7/+7
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-10/+23
2014-08-14librustc: Tie up loose ends in unboxed closures.Patrick Walton-1/+1
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-2/+2
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-2/+2
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-1/+1
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-1/+1
2014-07-20Implement new mod import sugarJakub Wieczorek-1/+6
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-2/+10
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-3/+3
2014-07-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-0/+1
2014-07-13refactor Method definition to make space for macrosJohn Clements-11/+21
2014-07-11make walk/visit_mac opt-in onlyJohn Clements-2/+11
2014-07-09syntax: doc comments all the thingsCorey Richardson-16/+16
2014-07-08carry self ident forward through re-parsingJohn Clements-2/+2
2014-07-03Simplify PatIdent to contain an Ident rather than a PathJohn Clements-2/+2
2014-06-13libsyntax: Allow `+` to separate trait bounds from objects.Patrick Walton-1/+1
2014-06-11rustc: Move the AST from @T to Gc<T>Alex Crichton-14/+14
2014-06-11syntax: Move the AST from @T to Gc<T>Alex Crichton-138/+140
2014-06-10Fix more misspelled comments and strings.Joseph Crail-1/+1
2014-06-09librustc: Implement sugar for the `FnMut` traitPatrick Walton-0/+13
2014-06-07Add visit_attribute to Visitor, use it for unused_attributeSteven Fackler-16/+46
2014-05-29auto merge of #14483 : ahmedcharles/rust/patbox, r=alexcrichtonbors-1/+1
2014-05-28Add AST node for pattern macrosKeegan McAllister-0/+1
2014-05-27Rename PatUniq to PatBox. Fixes part of #13910.Ahmed Charles-1/+1
2014-05-15syntax::visit: pub `walk_explicit_self` so impls can call it as defaults do.Felix S. Klock II-3/+13
2014-05-14Removed unnecessary arguments for walk_* functionsMichael Darakananda-8/+4
2014-05-03Temporary patch to accept arbitrary lifetimes (behind feature gate) in bound ...Niko Matsakis-1/+2
2014-04-26syntax: ViewItemUse no longer contains multiple view paths.Kang Seonghoon-15/+13
2014-04-23Support unsized types with the `type` keywordNick Cameron-1/+1
2014-04-20Allow inheritance between structs.Nick Cameron-0/+4
2014-04-11syntax: remove ast::Sigil.Eduard Burtescu-2/+13
2014-04-10Renamed ast::Purity to ast::FnStyle and ast::ImpureFn to ast::NormalFn and up...Kasey Carrothers-3/+3
2014-04-04syntax: remove obsolete mutability from ExprVec and ExprRepeat.Eduard Burtescu-2/+2
2014-04-03syntax: Remove AbiSet, use one AbiAlex Crichton-2/+2
2014-03-22Migrate all users of opt_vec to owned_slice, delete opt_vec.Huon Wilson-4/+3
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-1/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-1/+1
2014-03-15rustc: Remove compiler support for __log_level()Alex Crichton-1/+0
2014-03-12Changed lists of lifetimes in ast and ty to use Vec instead of OptVec.Felix S. Klock II-2/+3
2014-03-07rename ast::ViewItemExternMod to ast::ViewItemExternCrate, and clean::ExternM...Liigo Zhuang-1/+1
2014-03-03syntax: make match arms store the expr directly.Huon Wilson-1/+1
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-2/+2
2014-03-01rustc: implement a lint for publicly visible private types.Huon Wilson-5/+8
2014-02-26Replace callee_id with information stored in method_map.Eduard Burtescu-6/+5
2014-02-14Removed the obsolete ast::CallSugar (previously used by `do`).Eduard Burtescu-2/+2
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-1/+1
2014-02-13Replace `crate` usage with `krate`Flavio Percoco-2/+2
2014-02-07Removed @self and @Trait.Eduard Burtescu-1/+1
2014-01-30Implement default type parameters in generics.Eduard Burtescu-1/+5