| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-02-07 | librustc: Lots of de-muting. rs=demuting | Patrick Walton | -23/+29 | |
| 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-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -5/+5 | |
| 2013-01-28 | core: Allow legacy records in in a few modules | Tim Chevalier | -0/+1 | |
| Because of macros, #[allow(structural_records]] in extfmt, gc, os, pipes, and run. Will need a snapshot. | ||||
| 2013-01-25 | Merge remote-tracking branch 'brson/nocommupstream' | Brian Anderson | -6/+7 | |
| Conflicts: src/libcore/private.rs src/libcore/task/mod.rs src/libcore/task/spawn.rs src/libstd/net_tcp.rs src/libstd/uv_global_loop.rs src/libstd/uv_iotask.rs | ||||
| 2013-01-24 | Remove "unsafe" from run::start_program | Erick Tryzelaar | -70/+68 | |
| 2013-01-24 | convert most of libcore records into structs | Erick Tryzelaar | -11/+16 | |
| 2013-01-23 | core: Stop using oldcomm | Brian Anderson | -6/+7 | |
| 2013-01-13 | Support ARM and Android | kyeongwoon | -0/+2 | |
| Conflicts: src/libcore/os.rs src/librustc/back/link.rs src/librustc/driver/driver.rs src/librustc/metadata/loader.rs src/librustc/middle/trans/base.rs | ||||
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -127/+146 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -2/+6 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -6/+2 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -2/+6 | |
| module scope. r=tjc | ||||
| 2012-12-27 | librustc: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+2 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -2/+11 | |
| contain at least two components. r=graydon | ||||
| 2012-12-14 | Rename core::comm to core::oldcomm | Brian Anderson | -5/+5 | |
| 2012-12-14 | Fix broken tests | Brian Anderson | -1/+1 | |
| 2012-12-07 | libcore: Fix Windows-only pattern in run.rs. rs=bustage | Patrick Walton | -2/+2 | |
| 2012-12-05 | test: Fix a bunch of test cases. rs=burning | Patrick Walton | -2/+2 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-10-18 | libcore: Make run::program_output UTF-8 safe | Tycho Sci | -12/+16 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -3/+3 | |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -1/+1 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -1/+1 | |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -3/+3 | |
| 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-09-28 | core: Demode patterns | Brian Anderson | -8/+9 | |
| 2012-09-28 | Demode extfmt | Tim Chevalier | -1/+1 | |
| Needs a snapshot before this can be completed, because I changed the mode for conv_poly. | ||||
| 2012-09-27 | Finish de-exporting path, rand, run, sys. Part of #3583. | Graydon Hoare | -1/+0 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -6/+6 | |
| 2012-09-26 | libcore: De-export dvec, rand, run, and sys | Patrick Walton | -18/+9 | |
| 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/+3 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-19 | libcore: unsafe mod renamed to cast | Erick Tryzelaar | -3/+3 | |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -6/+6 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -6/+6 | |
| 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 | -3/+3 | |
| hat tip to @jruderman | ||||
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -2/+2 | |
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -5/+5 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 | |
| 2012-09-04 | core: Remove struct ctors | Brian Anderson | -1/+6 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 | |
| 2012-09-02 | core: deny(vecs_implicity_copyable) | Brian Anderson | -4/+4 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -3/+3 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+2 | |
| 2012-08-27 | Convert over some residual uses of #oldmacros. | Graydon Hoare | -2/+2 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -15/+15 | |
| 2012-08-25 | libstd: Don't make task-local GC data when creating TCP streams. | Patrick Walton | -0/+1 | |
| This exposed an ICE in a test; it's commented out for now. | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -3/+3 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
