| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-08 | libstd: Remove mutable fields from future and par | Patrick Walton | -2/+2 | |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -8/+0 | |
| 2013-04-20 | Replaced many instances of reinterpret_cast with transmute | Matthijs Hofstra | -1/+1 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -2/+2 | |
| 2013-03-11 | Remove uses of log | Brian Anderson | -8/+8 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-02 | libstd: Remove `fn@`, `fn~`, and `fn&` from libstd. rs=defun | Patrick Walton | -13/+14 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -5/+5 | |
| 2013-02-17 | Removed more capture claueses. | Seth Pink | -3/+3 | |
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -2/+2 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -34/+17 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-31 | Finalize moves-based-on-type implementation. | Niko Matsakis | -2/+7 | |
| Changes: - Refactor move mode computation - Removes move mode arguments, unary move, capture clauses (though they still parse for backwards compatibility) - Simplify how moves are handled in trans - Fix a number of illegal copies that cropped up - Workaround for bug involving def-ids in params (see details below) Future work (I'll open bugs for these...): - Improve error messages for moves that are due to bindings - Add support for moving owned content like a.b.c to borrow check, test in trans (but I think it'll "just work") - Proper fix for def-ids in params Def ids in params: Move captures into a map instead of recomputing. This is a workaround for a larger bug having to do with the def-ids associated with ty_params, which are not always properly preserved when inlining. I am not sure of my preferred fix for the larger bug yet. This current fix removes the only code in trans that I know of which relies on ty_param def-ids, but feels fragile. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+1 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -1/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+1 | |
| module scope. r=tjc | ||||
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -0/+6 | |
| contain at least two components. r=graydon | ||||
| 2012-12-18 | Remove superfluous parentheses. | Erick Tryzelaar | -4/+4 | |
| 2012-12-13 | Rename Send trait to Owned | Brian Anderson | -6/+7 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -4/+6 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-01 | Demode ebml, ebml2, json, par | Tim Chevalier | -4/+4 | |
| 2012-09-28 | std: More demoding | Brian Anderson | -9/+9 | |
| 2012-09-28 | demode vec | Niko Matsakis | -4/+4 | |
| 2012-09-27 | De-export std::{base64,cmp,par}. Part of #3583. | Graydon Hoare | -6/+5 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -1/+1 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -3/+3 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -1/+1 | |
| hat tip to @jruderman | ||||
| 2012-09-10 | Make remaining moves explicit in libstd | Tim Chevalier | -2/+2 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -6/+6 | |
| 2012-09-06 | Refactor trans to replace lvalue and friends with Datum. | Niko Matsakis | -2/+2 | |
| Also: - report illegal move/ref combos whether or not ref comes first - commented out fix for #3387, too restrictive and causes an ICE | ||||
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -1/+1 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -1/+1 | |
| 2012-08-31 | Remove type annotation that is no longer necessary | Tim Chevalier | -2/+1 | |
| Closes #2617 | ||||
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -2/+2 | |
| Closes #3302 | ||||
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -2/+2 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -4/+4 | |
| 2012-08-16 | Add std::comm with DuplexStream | Eric Holk | -4/+0 | |
| 2012-08-13 | rustc: Mostly implement region-bounded stack closures | Patrick Walton | -2/+2 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -2/+0 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -4/+4 | |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -1/+1 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -3/+3 | |
| #2907. | ||||
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -16/+22 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-03 | core: Eliminate some overloading of the name "future" in future.rs | Patrick Walton | -1/+1 | |
| 2012-07-02 | rustc: Implement a new resolve pass behind a compile flag | Patrick Walton | -0/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -13/+13 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -19/+19 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -17/+17 | |
