| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | -1/+1 | |
| 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 | Fix trans for region patterns (&P) | Niko Matsakis | -1/+1 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -2/+2 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -1/+3 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | core: Move TLS to task::local_data | Brian Anderson | -3/+3 | |
| 2012-09-19 | rustdoc: Begin support for structs | Brian Anderson | -0/+33 | |
| 2012-09-19 | rustdoc: Fix some script-mangled idents | Brian Anderson | -37/+37 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-18 | rustdoc: Camel case | Brian Anderson | -65/+65 | |
| 2012-09-05 | rustdoc: "import" -> "use" | Patrick Walton | -2/+2 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -28/+28 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -8/+11 | |
| This is needed for a lot of Apple libraries, as Apple tends to put a lot of globals in dynamic libraries. | ||||
| 2012-08-24 | Use a faked-up function as a key, because functions aren't identical ↵ | Paul Stansifer | -4/+10 | |
| cross-crate in Windows. | ||||
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -2/+2 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -10/+25 | |
| 2012-08-08 | rustdoc: Update for new impl syntax | Brian Anderson | -13/+1 | |
| 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 | -3/+3 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -14/+12 | |
| 2012-08-03 | rustc: Parse, serialize, and deserialize trait inheritance | Patrick Walton | -1/+1 | |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -4/+4 | |
| 2012-07-18 | syntax: Parse multiple trait refs in a single implementation | Patrick Walton | -1/+1 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -4/+5 | |
| 2012-07-17 | Get rustdoc working with std::par instead of its own par library. Closes #2885. | Zack Corr | -4/+4 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -45/+45 | |
| #2907. | ||||
| 2012-07-13 | Front-end support for default impls in traits. | Lindsey Kuper | -8/+24 | |
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -4/+4 | |
| - 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 | -12/+12 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -2/+2 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 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 | -6/+6 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -6/+6 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -11/+11 | |
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -5/+5 | |
| 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 | -11/+11 | |
| 2012-06-24 | Remove resources | Tim Chevalier | -19/+0 | |
| Also fixed shapes for classes with dtors, as well as handling offsets for classes with dtors correctly in take glue. Closes #2485 | ||||
| 2012-06-13 | Box AST idents | Brian Anderson | -5/+5 | |
| 2012-05-13 | rustc: Eliminate some indirection to the syntax crate | Brian Anderson | -1/+1 | |
| 2012-04-30 | Revert "Eliminate a copy in syntax::parse::new_parser_from_file" | Tim Chevalier | -2/+2 | |
| This reverts commit 2bb3b63ec4379b812aeceb690d78763ec55d3cbb. (I was confused.) | ||||
| 2012-04-30 | Eliminate a copy in syntax::parse::new_parser_from_file | Tim Chevalier | -2/+2 | |
| 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-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-19 | make nominal types optionally parameterized by a self region. | Niko Matsakis | -3/+3 | |
| Issue #2201. | ||||
| 2012-03-11 | rustdoc: Add indexes to native mods. Closes #1963 | Brian Anderson | -1/+2 | |
| 2012-03-09 | rustdoc: Vastly simplify the document model | Brian Anderson | -70/+9 | |
| Don't attempt to impose any structure for documenting arguments, return values, etc. | ||||
| 2012-03-09 | rustdoc: Add the concept of 'sections' | Brian Anderson | -0/+3 | |
| 2012-03-08 | rustdoc: Don't bother reporting the type of return values | Brian Anderson | -6/+3 | |
| 2012-03-08 | rustdoc: Don't bother reporting the type of arguments | Brian Anderson | -2/+1 | |
| This is already displayed in the function signature. Simpler this way. | ||||
| 2012-03-03 | rustdoc: Introduce the concept of a 'page' | Brian Anderson | -35/+39 | |
| 2012-03-01 | rustdoc: Add index records to the doc tree | Brian Anderson | -1/+2 | |
