summary refs log tree commit diff
path: root/src/fuzzer
AgeCommit message (Collapse)AuthorLines
2012-07-11Fix some version numbers.Graydon Hoare-3/+3
2012-07-09Switch 'cont' to 'again' everywhere. Close #2229.Graydon Hoare-4/+4
2012-07-06For #2229, recognize 'again' in place of 'cont', final change pending snapshot.Graydon Hoare-1/+1
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-28/+31
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-7/+7
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-82/+82
2012-06-28Don't use literal info from the original source when pretty printing ↵Michael Sullivan-11/+14
expanded ASTs.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-76/+76
2012-06-21Remove some singleton vector appends.Eric Holk-8/+8
2012-06-20Remove bind. Issue #2189Brian Anderson-16/+16
2012-06-15Add the interner to parse_sess.Paul Stansifer-18/+2
2012-06-13Box AST identsBrian Anderson-1/+1
2012-06-04Make vecs implicitly copyable for all of our projects.Michael Sullivan-0/+2
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-1/+1
Per issue #2418.
2012-05-21remove mutable cycle from ast_foldNiko Matsakis-5/+5
2012-05-13rustc: Eliminate some indirection to the syntax crateBrian Anderson-5/+5
2012-05-10Remove `do { ... } while ...` from the language.Paul Stansifer-3/+0
2012-05-04new cap clause syntaxNiko Matsakis-2/+2
2012-04-30Revert "Eliminate a copy in syntax::parse::new_parser_from_file"Tim Chevalier-6/+6
This reverts commit 2bb3b63ec4379b812aeceb690d78763ec55d3cbb. (I was confused.)
2012-04-30Eliminate a copy in syntax::parse::new_parser_from_fileTim Chevalier-6/+6
Fixing a FIXME turned out to be pretty involved. I added an io function that returns a unique boxed string (for the contents of a file) rather than a string, and went from there. Also made the src field of codemap a unique boxed string. This doesn't seem to make that much difference in amount of allocation according to valgrind (disappointingly), but I also had to introduce a copy somewhere else pending a new snapshot, so maybe that's it.
2012-04-18syntax: Put the main parser interface in mod parseBrian Anderson-3/+3
2012-04-13use find not echo; this also brings fuzzer under the iron fist of tidy.py!Niko Matsakis-45/+89
2012-04-06Remove support for old-style forMarijn Haverbeke-1/+0
Closes #1619
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-7/+7
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619
2012-04-05Explicitly use version 0.2 of cratesBrian Anderson-2/+7
2012-04-01Fixing issue 1919. list_dir is the more general version that returns a ↵Jonathan Sternberg-1/+1
vector with the contents of the directory. list_dir_path contains the old behavior (as a convenience function).
2012-03-28Update CC fuzzerJesse Ruderman-2/+2
2012-03-28Update AST fuzzerJesse Ruderman-10/+5
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-18/+18
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-5/+5
2012-03-20Implement an initial version of placement new.Niko Matsakis-9/+9
2012-03-13implement deserialization, rename mk_mem_buffer() to mem_buffer()Niko Matsakis-2/+2
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-10/+9
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-10core: Remove the nearly empty math moduleBrian Anderson-2/+2
This mod only had two functions, all of whose users have been changed to use the uint module.
2012-03-08Change util::unreachable to core::unreachableTim Chevalier-1/+1
Closes #1931
2012-03-02comp/fuzzer: rewrite to use io::with_str_reader.Erick Tryzelaar-10/+14
2012-03-02comp/std: rename io::string_reader to io::str_reader.Erick Tryzelaar-3/+3
2012-02-24Start next_id at 1 to make the compiler happyJesse Ruderman-2/+2
2012-02-24AST fuzzer: remove ignores for fixed issues; update issue URLsJesse Ruderman-43/+20
2012-02-24Improve the cycle-collector fuzzerJesse Ruderman-27/+59
2012-02-23Adjust fuzzer and cargo to changes in core::str APIMarijn Haverbeke-1/+1
2012-02-23(core::str) remove len_bytes aliasKevin Cantu-2/+2
2012-02-23(core::str) do some replacementsKevin Cantu-2/+2
2012-02-23(core::char) rename slice -> slice_charsKevin Cantu-1/+1
2012-02-23(core::str) rename rindex -> rindex_charsKevin Cantu-1/+1
2012-02-23(core::str) mostly rename len -> len_charsKevin Cantu-1/+1
2012-02-15make mut a keyword synonymous with mutableNiko Matsakis-2/+4
first step towards issue #1273
2012-02-15Fix use of expr_alt in fuzzer that was causing the build to failMarijn Haverbeke-1/+1
2012-02-13(core::str) add find_bytes and export it...Kevin Cantu-1/+1