summary refs log tree commit diff
path: root/src/libstd/workcache.rs
AgeCommit message (Expand)AuthorLines
2013-03-29std: add Encoder::emit_map and Decoder::read_mapErick Tryzelaar-14/+27
2013-03-22librustc: Add explicit lifetime binders and new lifetime notation in core/std...Patrick Walton-8/+7
2013-03-22libstd: Remove all uses of `pure` from libstd. rs=depurePatrick Walton-5/+5
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-4/+4
2013-03-22std: replace uses of old deriving attribute with new oneAndrew Paseltiner-1/+1
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-1/+1
2013-03-07De-implicit-self libstdBen Striegel-1/+1
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-7/+20
2013-03-05std: remove an unnecessary copy from workcacheErick Tryzelaar-1/+1
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming imp...Patrick Walton-1/+1
2013-02-28librustc: Mark all type implementations public. rs=impl-publicityPatrick Walton-5/+5
2013-02-27librustc: Forbid `pub` or `priv` before trait implementationsPatrick Walton-2/+2
2013-02-27libsyntax: Forbid `~mut` and `~const`. rs=demutingPatrick Walton-2/+3
2013-02-21core: Extract comm from pipes. #4742Brian Anderson-1/+2
2013-02-21librustc: Separate the rest of the trait bounds with `+` and stop parsing spa...Patrick Walton-20/+8
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-2/+2
2013-02-15librustc: Stop parsing `impl Type : Trait` and fix several declarations that ...Patrick Walton-2/+2
2013-02-15libstd: Get rid of `move`.Luqman Aden-18/+18
2013-02-14auto merge of #4927 : sanxiyn/rust/remove-dvec, r=catamorphismbors-5/+3
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-3/+3
2013-02-14Remove DVec from workcacheSeo Sanghyeon-5/+3
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-02-13RIMOV core::vecBen Striegel-2/+2
2013-02-07implement BaseIter for LinearMapDaniel Micay-3/+3
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-0/+2
2013-02-05MergeTim Chevalier-1/+1
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2013-01-31std: remove transitional codeTim Chevalier-21/+0
2013-01-29librustc: Disallow trait bounds in types, enumerations, and structure definit...Patrick Walton-0/+7
2013-01-28get rid of LinearMap's find_copy methodDaniel Micay-6/+18
2013-01-24remove old LinearMap constructorDaniel Micay-2/+2
2013-01-23switch LinearMap to current constructor conventionDaniel Micay-5/+5
2013-01-23rename hashmap find_ref/get_ref -> find/getDaniel Micay-1/+1
2013-01-23rename hashmap find/get -> find_copy/get_copyDaniel Micay-2/+2
2013-01-23rename send_map to hashmapDaniel Micay-1/+1
2013-01-22std: various hacking on workcache.Graydon Hoare-107/+185
2013-01-10core: Change XXXs into proper FIXMEs with issue numbersTim Chevalier-5/+5
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-1/+0
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2012-12-27libstd: Fix a bunch of resolve errors in tests. rs=firePatrick Walton-0/+2
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-5/+9
2012-12-19Fix a warning in the workcache test.Erick Tryzelaar-1/+1
2012-12-18Stop resolving static methods at the module level. Closes #4179Brian Anderson-1/+1
2012-12-17Switch from serialization to std::serialize. (snapshot)Erick Tryzelaar-16/+14
2012-12-13Long linesBrian Anderson-1/+2
2012-12-13Change some uses of static methods to use the trait pathBrian Anderson-3/+2
2012-12-13Replace some Eq impls with deriving_eqBrian Anderson-9/+1
2012-12-13Rename Send trait to OwnedBrian Anderson-5/+5