about summary refs log tree commit diff
path: root/src/libsyntax/fold.rs
AgeCommit message (Expand)AuthorLines
2014-02-14Removed the obsolete ast::CallSugar (previously used by `do`).Eduard Burtescu-7/+4
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-13/+22
2014-02-13Replace `crate` usage with `krate`Flavio Percoco-2/+2
2014-02-11syntax/fold -- remove conflicting (and rather pointless) closuresNiko Matsakis-18/+7
2014-02-07Removed @self and @Trait.Eduard Burtescu-1/+1
2014-02-03syntax: Remove usage of io_error in testsAlex Crichton-2/+4
2014-02-02libsyntax: Fix tests.Patrick Walton-3/+5
2014-02-02librustc: Fix merge fallout.Patrick Walton-5/+3
2014-02-02libsyntax: Remove all `@str` from the ASTPatrick Walton-2/+6
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-1/+3
2014-02-02libsyntax: Introduce an `InternedString` type to reduce `@str` in thePatrick Walton-7/+4
2014-01-30Implement default type parameters in generics.Eduard Burtescu-0/+1
2014-01-29Removing support for the do syntax from libsyntax and librustc.Scott Lawrence-1/+0
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-7/+2
2014-01-16Load macros from external modulesSteven Fackler-14/+23
2014-01-14auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakisbors-1/+1
2014-01-13librustc: Remove `@` pointer patterns from the languagePatrick Walton-1/+0
2014-01-12Removed remnants of `@mut` and `~mut` from comments and the type system.Eduard Burtescu-1/+1
2014-01-09auto merge of #11055 : pcwalton/rust/placement-box, r=pcwaltonbors-0/+3
2014-01-09librustc: Implement placement `box` for GC and unique pointers.Patrick Walton-0/+3
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-163/+153
2014-01-06Disowned the Visitor.Eduard Burtescu-129/+134
2014-01-03libsyntax: Fix tests.Patrick Walton-1/+1
2014-01-03librustc: Remove `@mut` support from the parserPatrick Walton-1/+1
2014-01-01Remove `extern mod foo (name="bar")` syntax, closes #9543Florian Hahn-2/+0
2013-12-29Make ast_fold take &mut selfSteven Fackler-64/+64
2013-12-17Remove obsolete mutability from ast::TySeo Sanghyeon-4/+4
2013-12-08Remove dead codesKiet Tran-22/+0
2013-12-01auto merge of #10750 : Blei/rust/no-at-struct-field, r=alexcrichtonbors-6/+6
2013-12-01ast: Remove one `@` and fix the falloutPhilipp Brüschweiler-6/+6
2013-12-01Box Block, fn_decl, variant and Ty in the AST, as they were inflating critica...Eduard Burtescu-47/+47
2013-11-27Freeze the AST by removing a couple of unused @mut ~[T] from token_tree.Eduard Burtescu-3/+3
2013-11-26Support multiple item macrosSteven Fackler-31/+22
2013-11-26libsyntax: Remove all non-`proc` `do` syntax.Patrick Walton-12/+12
2013-11-21Remove ty_macSeo Sanghyeon-1/+0
2013-11-19libsyntax: Change all uses of `&fn` to `||`.Patrick Walton-1/+1
2013-11-18Use '..' as slice wildcard in vectorsBrian Anderson-0/+1
2013-11-08Generalize AST and ty::Generics to accept multiple lifetimes.Niko Matsakis-5/+30
2013-11-04libsyntax/librustc: Allow calling variadic foreign functions.Luqman Aden-0/+2
2013-10-29librustc: Implement the `proc` type as sugar for `~once fn` and `proc`Patrick Walton-0/+3
2013-10-28Field identifiers now include specific spans (Closes #8263).Joshua Yanovski-3/+4
2013-10-25libsyntax/librustc: Allow mut qualifier in patterns.Luqman Aden-2/+0
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-1/+1
2013-10-10Remove named extern blocks from the ASTAlex Crichton-1/+0
2013-10-09option: rewrite the API to use compositionDaniel Micay-18/+18
2013-09-30syntax: Remove usage of fmt!Alex Crichton-1/+1
2013-09-29Remove all usage of @ast::CrateAlex Crichton-2/+2
2013-09-23test: Fix rustdoc and tests.Patrick Walton-13/+2
2013-09-23libsyntax: Introduce routines and remove all `@fn`s from libsyntax save the o...Patrick Walton-26/+10
2013-09-23librustc: Change fold to use traits instead of `@fn`.Patrick Walton-805/+635