| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-12-11 | Make name resolution errors non-fatal | Nick Cameron | -0/+3 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -8/+8 | |
| This breaks code that referred to variant names in the same namespace as their enum. Reexport the variants in the old location or alter code to refer to the new locations: ``` pub enum Foo { A, B } fn main() { let a = A; } ``` => ``` pub use self::Foo::{A, B}; pub enum Foo { A, B } fn main() { let a = A; } ``` or ``` pub enum Foo { A, B } fn main() { let a = Foo::A; } ``` [breaking-change] | ||||
| 2014-02-07 | Added tests to make tidy | Derek Guenther | -3/+6 | |
| 2013-08-27 | librustc: Remove `&const` and `*const` from the language. | Patrick Walton | -7/+0 | |
| They are still present as part of the borrow check. | ||||
| 2013-05-30 | Fix parser test | Niko Matsakis | -1/+1 | |
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+10 | |
| 2012-08-06 | s/alt/match/... again. | Niko Matsakis | -6/+6 | |
| 2012-08-06 | make `ref x` bindings produce region ptrs and fix various minor bugs | Niko Matsakis | -0/+41 | |
| we now detect inconsistent modes, binding names, and various other errors. typeck/trans integration is mostly done. borrowck not so much. more tests needed. | ||||
