about summary refs log tree commit diff
path: root/src/libfuzzer/fuzzer.rc
AgeCommit message (Collapse)AuthorLines
2013-02-25libsyntax: progress on making syntax::visit vecs_implicitly_copyable-freeErick Tryzelaar-9/+9
2013-02-21Get rid of structural records in libsyntax and the last bit in librustc.Luqman Aden-2/+2
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-02-01Merge remote-tracking branch 'nickdesaulniers/issue4524' into nocomm1Brian Anderson-5/+1
2013-02-01Remove fail keyword from lexer & parser and clean up remaining calls toNick Desaulniers-5/+1
fail Fix merge conflicts - Issue 4524
2013-01-31cleanup for make checkJohn Clements-2/+2
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2013-01-30librustdoc: De-export compiletest, combine-tests, libcargo, libfuzzer, and ↵Patrick Walton-57/+55
librustdoc. rs=deexporting
2013-01-26fuzzer: Remove structural recordsTim Chevalier-9/+9
2013-01-20convert ast::expr into a structErick Tryzelaar-1/+6
2013-01-17Add a license check to tidy. #4018Brian Anderson-1/+0
2013-01-17librustc: Implement write guards for borrowing `@mut` to `&` or `&mut`. ↵Patrick Walton-1/+1
r=nmatsakis
2013-01-09A collection of refactorings that I found it hard/tiresome to divide:Niko Matsakis-5/+6
- Make `extern fn()` assignable to any closure type, rather than a subtype. - Remove unused int_ty_set and float_ty_set - Refactor variable unification and make it more DRY - Do fn sub/lub/glb on the level of fn_sig - Rename infer::to_str::ToStr to infer::to_str::InferStr - Capitalize names of various types - Correct hashing of FnMeta - Convert various records-of-fns into structs-of-fns. This is both eliminating use of deprecated features and more forwards compatible with fn reform. r=pcwalton
2013-01-09core: rename vec.filter to vec.filteredErick Tryzelaar-2/+3
2013-01-09syntax: convert ast::spanned into a structErick Tryzelaar-1/+1
2012-12-21bump 0.5 => 0.6, redirect some URLs in docs.Graydon Hoare-4/+4
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-28Register snapshotsBrian Anderson-10/+0
2012-11-26Remove the crate languageBrian Anderson-0/+629
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-0/+32
per #3543