| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -2/+2 | |
| This matches the str::raw function. | ||||
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -1/+1 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -3/+3 | |
| 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-23 | core: Demode option | Brian Anderson | -1/+1 | |
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -7/+7 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -7/+7 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -2/+2 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-15 | libcore: rename *flate_buf to *flate_bytes (#3444) | Erick Tryzelaar | -2/+2 | |
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -1/+1 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -2/+2 | |
| 2012-09-05 | Mark crate metadata with a version tag. Close #3390. | Graydon Hoare | -3/+22 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -8/+8 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -1/+1 | |
| 2012-08-28 | Compress metadata section. Seems a minor speed win, major space win. | Graydon Hoare | -1/+3 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -23/+23 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -15/+17 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -15/+15 | |
| 2012-08-22 | Merge find_linkage_attrs with find_linkage_metas | Tim Chevalier | -2/+3 | |
| This gets rid of a gratuitous `match check`. | ||||
| 2012-08-22 | intern identifiers | Paul Stansifer | -18/+16 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -2/+2 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -8/+8 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -20/+20 | |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -1/+1 | |
| API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map). | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -13/+13 | |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -3/+3 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -17/+17 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -27/+27 | |
| #2907. | ||||
| 2012-07-13 | More consistent use of backticks and "expected" in error messages. | Lindsey Kuper | -1/+1 | |
| Got some of the debug messages, here, too. I figure it doesn't hurt to get used to doing this even in places where users won't ever see it. | ||||
| 2012-07-12 | Accept prefix notation for writing the types of str/~ and friends. | Michael Sullivan | -1/+1 | |
| 2012-07-09 | rustc: Switch to the new resolution pass | Patrick Walton | -0/+1 | |
| 2012-07-06 | Revert "rustc: Switch to the new resolution pass" | Niko Matsakis | -1/+0 | |
| This reverts commit c4af6e92fbae171c56a4e68666025725555fc9d8. Branch was burning...many, many unresolved imports. | ||||
| 2012-07-06 | rustc: Switch to the new resolution pass | Patrick Walton | -0/+1 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -5/+1 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -6/+6 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -14/+14 | |
| 2012-06-26 | Getting rid of lots more vector +=. (issue #2719) | Eric Holk | -1/+1 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -16/+16 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -2/+2 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -5/+5 | |
| 2012-05-29 | rustc: Move filesearch into metadata mod | Brian Anderson | -1/+0 | |
| It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading. | ||||
| 2012-05-22 | rustc: Eliminate metadata's dependency on session | Brian Anderson | -14/+15 | |
| 2012-05-22 | rustc: Eliminate some session deps from metadata::loader | Brian Anderson | -41/+56 | |
| 2012-05-22 | rustc: Don't fall back to static libraries when shared isn't found | Brian Anderson | -7/+2 | |
| Nothing on Earth depends on this functionality and it is probably unexpected | ||||
| 2012-05-17 | Refactoring, annotating FIXMEs in remainder of metadata code | Tim Chevalier | -1/+1 | |
| 2012-05-15 | rustc: Extract loader mod from creader mod | Brian Anderson | -0/+209 | |
| loader is a utility for locating crates and loading their metadata. creader is a compiler pass that loads metadata for all used libraries. | ||||
