| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-07 | Test fixes and rebase conflicts | Alex Crichton | -0/+2 | |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -4/+4 | |
| 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-06-13 | Dump results of analysis phase as CSV | Nick Cameron | -0/+61 | |
| Adds the option -Zsave-analysis which will dump the results of syntax and type checking into CSV files. These can be interpreted by tools such as DXR to provide semantic information about Rust programs for code search, cross-reference, etc. Authored by Nick Cameron and Peter Elmers (@pelmers; including enums, type parameters/generics). | ||||
