about summary refs log tree commit diff
path: root/src/rustc/metadata/filesearch.rs
AgeCommit message (Collapse)AuthorLines
2012-11-07Rename src/rustc to src/librustc. Use the driver crateBrian Anderson-173/+0
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-6/+6
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-5/+5
2012-09-23core: Demode optionBrian Anderson-2/+2
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-2/+2
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-1/+1
2012-09-04rustc: "import" -> "use"Patrick Walton-1/+1
2012-08-27Convert core::result to camel caseBrian Anderson-18/+18
2012-08-27rustc: fix the unused pattern vars warnings.Erick Tryzelaar-2/+2
2012-08-26Camel case the option typeBrian Anderson-16/+16
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-43/+40
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-6/+6
2012-08-14Convert more core types to camel caseBrian Anderson-25/+25
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-6/+6
2012-08-05Switch alts to use arrowsBrian Anderson-16/+12
2012-08-01Convert ret to returnBrian Anderson-2/+2
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-6/+6
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-21/+21
#2907.
2012-07-01Convert to new closure syntaxBrian Anderson-5/+5
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-3/+3
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-8/+8
2012-06-28Replaced almost all vector+ in rustc (#2719)Eric Holk-11/+15
Didn't update shape because the changes were causing segfaults.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-13/+13
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-2/+2
2012-05-29rustc: Move filesearch into metadata modBrian Anderson-0/+176
It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading.