| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-03 | library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵ | Daniel Patterson | -307/+0 | |
| per #3543 | ||||
| 2012-10-23 | rustc: Implement typechecking for simple monomorphic derivable traits on ↵ | Patrick Walton | -4/+10 | |
| monomorphic types. r=brson | ||||
| 2012-10-19 | Remove superfluous by-ref in option::get, option::get_default, option::expect | Tim Chevalier | -2/+2 | |
| Superficial change, no review. | ||||
| 2012-10-12 | Make moves explicit in rustdoc | Tim Chevalier | -1/+1 | |
| 2012-10-12 | Replace several common macros of the form #m[...] with m!(...) | Kevin Cantu | -1/+1 | |
| This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages... | ||||
| 2012-09-28 | rustdoc: Fix build errors | Brian Anderson | -0/+1 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -1/+1 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustdoc: Use doc comments for rustdoc's rustdocs | Brian Anderson | -7/+7 | |
| 2012-09-18 | rustdoc: Camel case | Brian Anderson | -29/+29 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -1/+1 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -1/+1 | |
| 2012-09-05 | rustdoc: "import" -> "use" | Patrick Walton | -5/+5 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -18/+18 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -12/+12 | |
| 2012-08-23 | Remove match checks in rustdoc | Tim Chevalier | -1/+3 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -4/+5 | |
| 2012-08-08 | rustdoc: Update for new impl syntax | Brian Anderson | -2/+2 | |
| 2012-08-08 | rustc: Do some plumbing work in preparation for common fields in enums | Patrick Walton | -2/+2 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -4/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -11/+9 | |
| 2012-08-03 | rustc: Parse, serialize, and deserialize trait inheritance | Patrick Walton | -1/+1 | |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -2/+2 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -3/+4 | |
| 2012-07-17 | Get rustdoc working with std::par instead of its own par library. Closes #2885. | Zack Corr | -3/+3 | |
| 2012-07-16 | replace core::tuple functions with methods | Gareth Daniel Smith | -2/+2 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -30/+30 | |
| #2907. | ||||
| 2012-07-13 | Front-end support for default impls in traits. | Lindsey Kuper | -1/+8 | |
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -3/+3 | |
| - removes various fields from various variants in the AST - also update tests not to use this notation | ||||
| 2012-07-05 | Change 'iface' to 'trait' internally; parse `trait` as `iface` synonym | Lindsey Kuper | -10/+10 | |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -2/+2 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -11/+11 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -14/+14 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -4/+4 | |
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -3/+3 | |
| This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI. | ||||
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -4/+4 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -3/+3 | |
| 2012-05-25 | Get rid of many implicit copies as a preliminary to Issue #2448. | Michael Sullivan | -1/+1 | |
| 2012-05-21 | rustc: Move ast_map to the syntax crate | Brian Anderson | -1/+1 | |
| 2012-05-13 | rustc: Eliminate some indirection to the syntax crate | Brian Anderson | -1/+1 | |
| 2012-04-25 | lots of work to make iface/impls parameterized by regions | Niko Matsakis | -2/+2 | |
| - paths can now take region parameters, replacing the dirty hack I was doing before of abusing vstores. vstores are now a bit of a hack though. - fix various small bugs: - we never checked that iface types were compatible when casting to an iface with `as` - we allowed nonsense like int<int> - and more! (actually that may be it) | ||||
| 2012-04-23 | Rename option::get_or_default to get_default, for consistency | Tim Chevalier | -1/+1 | |
| 2012-04-19 | make nominal types optionally parameterized by a self region. | Niko Matsakis | -1/+1 | |
| Issue #2201. | ||||
| 2012-04-02 | Rename some core::option functions | Tim Chevalier | -1/+1 | |
| from_maybe => get_with_default maybe => with_option may => with_option_do I know these names are kind of ridiculous, but it's the best I could think of. Feel free to bikeshed. Closes #2081 | ||||
| 2012-03-20 | Revert order of arguments to option::maybe and from_maybe | Marijn Haverbeke | -1/+1 | |
| Closes #2019 | ||||
| 2012-03-09 | rustdoc: Simplify attribute parsing | Brian Anderson | -33/+13 | |
| 2012-03-09 | rustdoc: Vastly simplify the document model | Brian Anderson | -175/+7 | |
| Don't attempt to impose any structure for documenting arguments, return values, etc. | ||||
| 2012-03-08 | Drop collect_items pass, create decls on demand | Marijn Haverbeke | -1/+1 | |
| This solves a problem with inlined functions that have inner functions. | ||||
