rust/src/libunicode
Steven Fackler 3dcd215740 Switch to purely namespaced enums
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-11-17 07:35:51 -08:00
..
lib.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
normalize.rs Prelude: rename and consolidate extension traits 2014-11-06 08:03:18 -08:00
tables.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
u_char.rs Link to Unicode SpecialCasing.txt document 2014-10-11 23:58:48 -04:00
u_str.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00