| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-14 | Fix cosmetics for fail!() calls | Marvin Löbel | -3/+2 | |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -16/+16 | |
| fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself. | ||||
| 2013-05-13 | librustdoc: Remove old-style extern mods from rustdoc tests. | Patrick Walton | -29/+5 | |
| 2013-05-11 | auto merge of #6389 : sonwow/rust/issue-3356, r=bstrie | bors | -3/+3 | |
| Fix for #3356 | ||||
| 2013-05-10 | renamed str::from_slice to str::to_owned | Youngsoo Son | -3/+3 | |
| 2013-05-10 | Move core::task::local_data to core::local_data | Youngsoo Son | -1/+1 | |
| 2013-05-09 | librustdoc: rename vec::each(var) to var.each | Youngmin Yoo | -3/+3 | |
| 2013-05-08 | librustc: Stop parsing modes and remove them entirely from the language | Patrick Walton | -4/+4 | |
| 2013-05-08 | librustc: Remove mutable fields from the language. | Patrick Walton | -1/+1 | |
| They're still parsed though, to get through bootstrapping. | ||||
| 2013-05-08 | libcore: Remove mutable fields from hash | Patrick Walton | -0/+1 | |
| 2013-05-03 | add gitattributes and fix whitespace issues | Daniel Micay | -1/+0 | |
| 2013-05-01 | rustdoc: Remove a now invalid test | Erick Tryzelaar | -7/+0 | |
| 2013-05-01 | rustc: remove the rest of drop | Erick Tryzelaar | -7/+1 | |
| Removes: ast::struct_def::dtor syntax::ast::ii_dtor syntax::visit::fk_dtor syntax::ast_map::node_dtor syntax:struct_dtor | ||||
| 2013-04-29 | auto merge of #6083 : jbclements/rust/parser-cleanup, r=jbclements | bors | -1/+1 | |
| r? @pcwalton A month's worth of parser cleanup here. Much of this is new comments and renaming. A number of these commits also remove unneeded code. Probably the biggest refactor here is splitting "parse_item_or_view_item" into two functions; it turns out that the only overlap between items in foreign modules and items in regular modules was macros, so this refactor should make things substantially easier for future maintenance. | ||||
| 2013-04-28 | make way for a new iter module | Daniel Micay | -2/+2 | |
| 2013-04-28 | refactoring mod.rs | John Clements | -1/+1 | |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -90/+1 | |
| 2013-04-25 | Rename vec::mod2 to vec::mod_zip | Corey Richardson | -1/+1 | |
| 2013-04-24 | Fixed typo... And a billion other things. | Marvin Löbel | -2/+2 | |
| 2013-04-24 | Removed ascii functions from other modules | Marvin Löbel | -1/+3 | |
| Replaced str::to_lowercase and str::to_uppercase | ||||
| 2013-04-19 | Assorted fixes from de-modeing rustc/syntax (rusti, rustdoc, fuzzer, rustpkg) | Alex Crichton | -2/+2 | |
| 2013-04-18 | auto merge of #5914 : catamorphism/rust/copy-cops, r=catamorphism | bors | -1/+1 | |
| 2013-04-18 | rustc: Anti-copy police | Tim Chevalier | -1/+1 | |
| In this case, some copies are still necessary to convert from a mutable to an immutable @-box. It's still an improvement, I hope. | ||||
| 2013-04-18 | core::comm: Modernize constructors to use `new` | Brian Anderson | -3/+3 | |
| 2013-04-16 | librustdoc: move tests into dedicated tests module. | Huon Wilson | -1619/+1624 | |
| 2013-04-10 | Bump version to 0.7-pre | Brian Anderson | -5/+5 | |
| 2013-04-09 | Bump version to 0.7-pre | Brian Anderson | -5/+5 | |
| 2013-04-05 | Fix various warnings, NOTEs, etc | Niko Matsakis | -1/+1 | |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -1/+1 | |
| I believe this patch incorporates all expected syntax changes from extern function reform (#3678). You can now write things like: extern "<abi>" fn foo(s: S) -> T { ... } extern "<abi>" mod { ... } extern "<abi>" fn(S) -> T The ABI for foreign functions is taken from this syntax (rather than from an annotation). We support the full ABI specification I described on the mailing list. The correct ABI is chosen based on the target architecture. Calls by pointer to C functions are not yet supported, and the Rust type of crust fns is still *u8. | ||||
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -231/+231 | |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+4 | |
| 2013-03-27 | derive Eq and Clone impls where applicable | Andrew Paseltiner | -23/+3 | |
| 2013-03-26 | librustc: Enforce that `extern mod` directives come first, then `use` ↵ | Patrick Walton | -4/+4 | |
| directives, then items. Resolve them in this order as well. | ||||
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -1/+1 | |
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -10/+6 | |
| 2013-03-26 | Move ast_map::map to LinearMap | Alex Crichton | -13/+13 | |
| 2013-03-26 | auto merge of #5555 : Kimundi/rust/str-dealloc-3, r=catamorphism | bors | -7/+11 | |
| - Most functions that used to return `~[~str]` for a list of substrings got turned into iterators over `&str` slices - Some cleanup of apis, docs and code layout | ||||
| 2013-03-26 | auto merge of #5549 : brson/rust/rustdoc, r=brson | bors | -21/+219 | |
| r? | ||||
| 2013-03-26 | rustdoc: Tweak list style | Brian Anderson | -0/+5 | |
| 2013-03-26 | rustdoc: Add type bounds to impls | Brian Anderson | -7/+37 | |
| 2013-03-26 | rustdoc: Handle impl method visibility correctly. #5533 | Brian Anderson | -13/+161 | |
| 2013-03-26 | rustdoc: Build the crate config correctly. Fixes #5011 | Brian Anderson | -1/+1 | |
| 2013-03-26 | rustdoc: Sanitize links harder | Brian Anderson | -0/+15 | |
| 2013-03-26 | Fixed all use sites and tests | Marvin Löbel | -7/+11 | |
| 2013-03-26 | auto merge of #5536 : sanxiyn/rust/doc-purity, r=brson | bors | -3/+6 | |
| Fix #3804. | ||||
| 2013-03-25 | rustdoc: Show purity | Seo Sanghyeon | -3/+6 | |
| 2013-03-25 | Kill some warnings: unused imports and old #[deny(..)]s. | Huon Wilson | -3/+0 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -9/+8 | |
| 2013-03-22 | librustdoc: Remove `pure` from fuzzer and rustdoc. | Patrick Walton | -33/+33 | |
| 2013-03-22 | rustdoc: replace uses of old deriving attribute with new one | Andrew Paseltiner | -18/+18 | |
