rust/src/etc
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
..
emacs Add 'move' keyword to emacs, kate, and vim editor modes. 2014-11-10 23:46:36 -08:00
gedit Add new keywords (particularly where & virtual) to editor modes. 2014-08-17 11:57:22 +10:00
kate Add 'move' keyword to emacs, kate, and vim editor modes. 2014-11-10 23:46:36 -08:00
mingw-fix-include Added more scripts to tidy check 2014-02-17 10:36:47 -06:00
pkg dist: Make Windows installer modify system %PATH% 2014-09-26 18:04:48 -04:00
third-party Update license notice. 2014-09-11 09:40:20 -07:00
vim Rename IntoStr to IntoString 2014-11-16 12:41:55 +11:00
zsh Improve the zsh completions. 2014-09-16 12:23:38 -04:00
2014-06-rewrite-bytes-macros.py Change /bin/env to /usr/bin/env in helper python script, as it is more portable 2014-06-23 09:17:40 +10:00
adb_run_wrapper.sh Added more scripts to tidy check 2014-02-17 10:36:47 -06:00
apple-darwin.supp platform-specific valgrind suppression 2012-02-05 09:07:23 -08:00
check-binaries.py add shebang to scripts that have execute bit set 2014-05-12 19:52:29 -07:00
check-links.pl Added more scripts to tidy check 2014-02-17 10:36:47 -06:00
check-summary.py add shebang to scripts that have execute bit set 2014-05-12 19:52:29 -07:00
cmathconsts.c Added more scripts to tidy check 2014-02-17 10:36:47 -06:00
ctags.rust Improved the tags impl regex 2014-07-24 09:08:52 -04:00
extract_grammar.py add shebang to scripts that have execute bit set 2014-05-12 19:52:29 -07:00
gdb_rust_pretty_printing.py debuginfo: Don't mark struct fields as artificial. 2014-10-08 11:52:06 +02:00
generate-deriving-span-tests.py Un-feature gate struct variants 2014-11-15 18:15:27 -08:00
generate-keyword-tests.py Update repo location 2014-06-16 18:16:36 -07:00
get-snapshot.py Register snapshots 2014-09-10 18:33:54 -07:00
indenter add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
install.sh install: Fix the install.sh script to work with spaces 2014-09-29 15:29:57 -07:00
latest-unix-snaps.py etc: add missing license boilerplates 2014-02-05 19:53:53 +01:00
libc.c Added more scripts to tidy check 2014-02-17 10:36:47 -06:00
licenseck.py Relicense shootout-fasta-redux.rs to the shootout license. 2014-09-25 00:31:47 +02:00
lldb_batchmode.py debuginfo: Add a timeout for LLDB tests. 2014-11-05 18:35:24 +01:00
lldb_rust_formatters.py debuginfo: Don't mark struct fields as artificial. 2014-10-08 11:52:06 +02:00
local_stage0.sh Port Rust to DragonFlyBSD 2014-07-29 16:44:39 +02:00
make-snapshot.py add shebang to scripts that have execute bit set 2014-05-12 19:52:29 -07:00
make-win-dist.py etc: Don't bundle libctl3d32 on windows 2014-11-13 09:28:26 -08:00
maketest.py test: Convert Window path to MSYS path 2014-08-23 16:19:07 +09:00
mirror-all-snapshots.py etc: add missing license boilerplates 2014-02-05 19:53:53 +01:00
mklldeps.py Fix librustc_llvm 2014-09-30 12:52:47 -07:00
regex-match-tests.py Add a regex crate to the Rust distribution. 2014-04-25 00:27:24 -04:00
rustup.sh Long lines 2014-10-28 10:24:03 -07:00
snapshot.py src/etc/snapshot: support triples lacking a vendor 2014-11-13 17:23:02 -05:00
sugarise-doc-comments.py etc: add missing license boilerplates 2014-02-05 19:53:53 +01:00
tidy.py Improve searching for XXX in tidy script (#3303) 2014-04-08 00:03:12 -07:00
unicode.py Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
x86.supp rm obsolete valgrind suppressions 2014-10-02 05:01:10 -04:00
ziggurat_tables.py std: Move rand to librand. 2014-03-12 11:31:05 +11:00