| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-08 | Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)] | Zack Corr | -4/+4 | |
| 2013-05-03 | Remove extra `#[cfg(stage0)]` | gifnksm | -3/+0 | |
| 2013-05-02 | libcore: Export core::from_str::FromStr from core::prelude | gifnksm | -0/+1 | |
| 2013-04-11 | bool: implement Ord and TotalOrd | Daniel Micay | -27/+72 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -14/+14 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -1/+1 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -1/+1 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-06 | bool: make the from_str function a FromStr impl | Daniel Micay | -8/+14 | |
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -2/+2 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -2/+0 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-17 | Add a license check to tidy. #4018 | Brian Anderson | -1/+0 | |
| 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: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+1 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -0/+1 | |
| contain at least two components. r=graydon | ||||
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-30 | core: Make core.rc more readable. Cleanup | Brian Anderson | -0/+1 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -8/+0 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+8 | |
| 2012-09-26 | libcore: De-export bool | Patrick Walton | -20/+16 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -7/+0 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+7 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -3/+2 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -1/+1 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+8 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -5/+5 | |
| 2012-08-13 | De-mode-ify a few minor libcore modules. | Graydon Hoare | -5/+11 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -1/+1 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -3/+3 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -6/+6 | |
| #2907. | ||||
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -23/+21 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -2/+2 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -2/+2 | |
| 2012-03-10 | core: Cleanup bool module | Brian Anderson | -20/+20 | |
| Instead of defining a type for bool, just use the bool type directly in order to be more consistent with other modules. Cleanup the comments a bit. | ||||
| 2012-03-09 | core: Convert to rustdoc | Brian Anderson | -41/+18 | |
| 2012-02-22 | Make the various from_str functions return options | Marijn Haverbeke | -5/+5 | |
| So that they can be used with user input without causing task failures. Closes #1335 | ||||
| 2012-02-15 | Rewrite exhaustiveness checker | Marijn Haverbeke | -1/+2 | |
| Issue #352 Closes #1720 The old checker would happily accept things like 'alt x { @some(a) { a } }'. It now properly descends into patterns, checks exhaustiveness of booleans, and complains when number/string patterns aren't exhaustive. | ||||
| 2012-01-23 | s/block()/fn()/g | Niko Matsakis | -1/+1 | |
| 2012-01-17 | libcore: Move core tests into libcore | Brian Anderson | -0/+20 | |
| 2012-01-11 | libcore: Fix long lines | Brian Anderson | -2/+4 | |
| 2012-01-11 | make rustdocs more terse for bool.rs where it is obvious to programmers as ↵ | Roland Tanglao | -45/+13 | |
| per feedback from graydon | ||||
| 2012-01-11 | Change doc comments to rustdoc in bool.rs | Roland Tanglao | -83/+73 | |
| 2011-12-16 | core: marked fns as pure where possible | Stefan Plantikow | -1/+1 | |
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -0/+134 | |
