| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-19 | Remove the old serialization code | Erick Tryzelaar | -1028/+0 | |
| Closes #3713. | ||||
| 2012-12-13 | Begin renaming serialization to std::serialize. (snapshot) | Erick Tryzelaar | -133/+0 | |
| 2012-12-13 | librustc: Make `use` statements crate-relative by default. r=brson | Patrick Walton | -1/+1 | |
| 2012-12-12 | syntax: remove all remaining uses of #ast, and #ast / qquote itself. | Graydon Hoare | -1/+1 | |
| 2012-12-10 | Remove un-needed code for obsolete classes | Tim Chevalier | -4/+4 | |
| and rename "class" to "struct" everywhere possible (except local vars, I was too lazy for that) -- that is why this commit is so big. No review, just dead code removal and renaming. Closes #3515 | ||||
| 2012-12-07 | Remove impl_id from trait_ref. Unused | Brian Anderson | -1/+0 | |
| 2012-12-04 | librustc: Remove all legacy pattern bindings from libsyntax and librustc. ↵ | Patrick Walton | -8/+8 | |
| rs=refactoring | ||||
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-26 | auto_serialize should use explicit refs (fixes #4044) | Erick Tryzelaar | -2/+2 | |
| 2012-11-14 | librustc: Require the #[derivable] attribute, remove the significance of ↵ | Patrick Walton | -1/+1 | |
| "impl Foo : Bar;", and allow only a subset of methods in a trait to be derived. r=brson | ||||
| 2012-11-07 | rustc: Support irrefutable patterns in function arguments. r=nmatsakis | Patrick Walton | -3/+19 | |
| 2012-10-23 | rustc: Implement typechecking for simple monomorphic derivable traits on ↵ | Patrick Walton | -1/+1 | |
| monomorphic types. r=brson | ||||
| 2012-10-22 | Simplify the AST representation of ty param bounds | Tim Chevalier | -2/+2 | |
| Change ast::ty_param_bound so that all ty param bounds are represented as traits, with no special cases for Copy/Send/Owned/Const. typeck::collect generates the special cases. A consequence of this is that code using the #[no_core] attribute can't use the Copy kind/trait. Probably not a big deal? As a side effect, any user-defined traits that happen to be called Copy, etc. in the same module override the built-in Copy trait. r=nmatsakis Closes #2284 | ||||
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -4/+4 | |
| 2012-10-15 | libstd: make Serializer a trait-level typaram | Erick Tryzelaar | -56/+87 | |
| 2012-10-07 | Remove the old serializers (needs snapshot) | Erick Tryzelaar | -718/+967 | |
| 2012-10-07 | remove the old auto_serialize syntax extension | Erick Tryzelaar | -108/+1 | |
| 2012-09-28 | rename iter2 to each2, make it follow iterator protocol | Niko Matsakis | -2/+2 | |
| 2012-09-28 | demode vec | Niko Matsakis | -5/+5 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -4/+4 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -5/+5 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -2/+2 | |
| 2012-09-12 | Make moves in arguments explicit in libsyntax and rustc | Tim Chevalier | -20/+21 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -1/+1 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -4/+2 | |
| 2012-09-10 | Camel case std::serialization | Brian Anderson | -2/+2 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -3/+3 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -8/+8 | |
| 2012-09-04 | libsyntax: "import" -> "use" | Patrick Walton | -4/+4 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -18/+18 | |
| 2012-08-24 | Remove match check | Tim Chevalier | -2/+2 | |
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -3/+3 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -5/+5 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -33/+40 | |
| 2012-08-14 | Make autoserialize not generate alt checks | Tim Chevalier | -2/+11 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+1 | |
| 2012-08-08 | rustc: Do some plumbing work in preparation for common fields in enums | Patrick Walton | -2/+2 | |
| 2012-08-08 | rustc: Do some plumbing work on nested enums | Patrick Walton | -1/+3 | |
| 2012-08-07 | rustc: Parse variant structs; add a trivial test case | Patrick Walton | -1/+1 | |
| 2012-08-07 | rustc: Add stub support for struct variants to the AST | Patrick Walton | -53/+69 | |
| 2012-08-07 | syntax: Rename expr_alt to expr_match | Brian Anderson | -2/+2 | |
| 2012-08-06 | rustc: Parse and stub (broken) typechecking for bounded function types | Patrick Walton | -6/+8 | |
| 2012-08-06 | make `ref x` bindings produce region ptrs and fix various minor bugs | Niko Matsakis | -2/+4 | |
| we now detect inconsistent modes, binding names, and various other errors. typeck/trans integration is mostly done. borrowck not so much. more tests needed. | ||||
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -7/+7 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -38/+38 | |
| 2012-08-03 | rustc: Merge fn& and fn in favor of fn&. | Patrick Walton | -4/+4 | |
| This is a step on the way to moving the function "proto" sigil out front. | ||||
| 2012-07-31 | rustc: Parse by-reference pattern bindings with the "ref" keyword | Patrick Walton | -2/+4 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -13/+13 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -1/+28 | |
