| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-09 | Make staged versions of the functions that use uninit | James Miller | -0/+14 | |
| 2013-05-09 | Replace init() with uninit() where appropriate | James Miller | -1/+1 | |
| 2013-05-09 | auto merge of #6337 : thestinger/rust/fix_region, r=thestinger | bors | -0/+6 | |
| also removes unnecessary casts from the RcMut implementation | ||||
| 2013-05-08 | librustc: Stop parsing modes and remove them entirely from the language | Patrick Walton | -1/+1 | |
| 2013-05-08 | fix incorrect region code based on the old 'self | Daniel Micay | -0/+6 | |
| also removes unnecessary casts from the RcMut implementation | ||||
| 2013-05-04 | Register snapshots | Brian Anderson | -46/+0 | |
| 2013-05-02 | libcore: Export core::from_str::FromStr from core::prelude | gifnksm | -0/+2 | |
| 2013-04-29 | test: Fix tests. | Patrick Walton | -2/+2 | |
| 2013-04-29 | librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsic | Patrick Walton | -3/+20 | |
| 2013-04-29 | librustc: Implement `reinterpret_cast` in terms of `transmute`. | Patrick Walton | -0/+36 | |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ↵ | Huon Wilson | -5/+5 | |
| pub mod or pub fn). | ||||
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -1/+1 | |
| I believe this patch incorporates all expected syntax changes from extern function reform (#3678). You can now write things like: extern "<abi>" fn foo(s: S) -> T { ... } extern "<abi>" mod { ... } extern "<abi>" fn(S) -> T The ABI for foreign functions is taken from this syntax (rather than from an annotation). We support the full ABI specification I described on the mailing list. The correct ABI is chosen based on the target architecture. Calls by pointer to C functions are not yet supported, and the Rust type of crust fns is still *u8. | ||||
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -6/+6 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -6/+8 | |
| 2013-03-26 | core: Make sure every module at least has a one-line description | Brian Anderson | -0/+2 | |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -6/+6 | |
| notation. rs=delifetiming | ||||
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -1/+1 | |
| and obsolete `-` mode altogether (it *was* parsed as `+` mode). | ||||
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -6/+6 | |
| 2013-03-07 | libcore: Remove `extern mod { ... }` from libcore. rs=deexterning | Patrick Walton | -4/+7 | |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -10/+10 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -3/+0 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+2 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -2/+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/+2 | |
| module scope. r=tjc | ||||
| 2012-12-12 | Fix the test for transmute | Brian Anderson | -3/+4 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -2/+2 | |
| 2012-10-05 | core: Correct description of cast::forget | Brian Anderson | -1/+1 | |
| 'managed' means something different now | ||||
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -0/+1 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -9/+9 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -1/+1 | |
| 2012-09-28 | Demode extfmt | Tim Chevalier | -2/+2 | |
| Needs a snapshot before this can be completed, because I changed the mode for conv_poly. | ||||
| 2012-09-27 | Finish de-exporting cast, mutable, flate, repr, cleanup, reflect. Part of #3583. | Graydon Hoare | -1/+0 | |
| 2012-09-26 | libcore: De-export box, cast, and dlist | Patrick Walton | -25/+23 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -3/+4 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -0/+136 | |
