about summary refs log tree commit diff
path: root/src/fuzzer
AgeCommit message (Collapse)AuthorLines
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-986/+0
per #3543
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-10-19Remove superfluous by-ref in option::get, option::get_default, option::expectTim Chevalier-1/+1
Superficial change, no review.
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-9/+9
2012-10-12bump version to 0.5.Graydon Hoare-3/+3
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-10-02libstd: Switch off legacy modes in both core and std.Patrick Walton-1/+1
2012-09-28Add allow(deprecated_\*) to syntax, rustc, rustdoc, et alBrian Anderson-0/+2
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-26Fix fuzzer/cargo breakageBrian Anderson-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-9/+9
2012-09-26turn ast::ident into a structErick Tryzelaar-1/+1
This will help with the auto_serialize2 migration. We have to change ident from a type alias to uint into a unique type. We need to use a struct instead of a "enum ident = token::str_num" because structs support constants, but newtypes do not.
2012-09-25Demode core::resultBrian Anderson-3/+3
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-9/+0
2012-09-23core: Demode optionBrian Anderson-1/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+3
#[legacy_exports];
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+9
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-14/+16
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-0/+2
2012-09-18libcore: make a copyless io::BytesWriterErick Tryzelaar-5/+1
2012-09-18make filetype() include the "." (fixes #3412)Niko Matsakis-1/+1
2012-09-18Add allow(non_camel_case_types) to unconverted cratesBrian Anderson-0/+1
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-3/+3
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-1/+1
2012-09-07Convert 'again' to 'loop'. Remove 'again' keywordBrian Anderson-4/+4
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+1
2012-09-05fuzzer: "import" -> "use"Patrick Walton-16/+13
2012-09-04Remove 'with'Brian Anderson-8/+8
2012-08-31Make utility funs in core::int, core::uint, etc. not by-referenceTim Chevalier-5/+5
Closes #3302
2012-08-30Bump version to 0.4Brian Anderson-3/+3
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+6
2012-08-29Fix breakageBrian Anderson-2/+2
2012-08-26Camel case the option typeBrian Anderson-12/+12
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-48/+55
2012-08-23libcore: update bytes/str reader to work with regions.Erick Tryzelaar-5/+6
This optimizes away a copy.
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-19/+19
2012-08-22intern identifiersPaul Stansifer-6/+8
2012-08-22Centralize ident interner generation.Paul Stansifer-6/+3
2012-08-22Eliminate many match checks in rustcTim Chevalier-10/+6
2012-08-15rustc: Parse labeled loop, break, and againPatrick Walton-2/+2
2012-08-15rustc: "as Trait" can now be written "as @Trait".Patrick Walton-3/+3
There is also code for ~Trait and &Trait, but these are currently (incorrectly) synonyms for "as @Trait" and "as &Trait".
2012-08-14Convert more core types to camel caseBrian Anderson-4/+4
2012-08-07syntax: Rename expr_alt to expr_matchBrian Anderson-1/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-9/+9
2012-08-05Switch alts to use arrowsBrian Anderson-38/+38
2012-08-01Convert ret to returnBrian Anderson-19/+19
2012-08-01Clean out transitional lint.Graydon Hoare-5/+0
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-19/+19