| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-07 | Rename src/rustc to src/librustc. Use the driver crate | Brian Anderson | -5217/+0 | |
| 2012-11-02 | rustc: Implement translation of pattern matching for tuple structs and ↵ | Patrick Walton | -25/+26 | |
| unit-like structs. r=nmatsakis | ||||
| 2012-11-02 | rustc: Implement typechecking, exhaustiveness checking, and borrow checking ↵ | Patrick Walton | -2/+3 | |
| for pattern matching of tuple structs. r=nmatsakis Conflicts: src/rustc/middle/typeck/check/alt.rs | ||||
| 2012-10-25 | rustc: Translate tuple struct constructors | Patrick Walton | -6/+8 | |
| 2012-10-24 | rustc: Implement typechecking for tuple structs. r=nmatsakis | Patrick Walton | -6/+15 | |
| 2012-10-23 | Remove <- operator from the compiler | Tim Chevalier | -1/+1 | |
| Yield an obsolete syntax error on things like "let foo <- bar;" and "foo <- bar;" r=brson Progress on #3466 | ||||
| 2012-10-23 | rustc: Implement typechecking for simple monomorphic derivable traits on ↵ | Patrick Walton | -44/+58 | |
| monomorphic types. r=brson | ||||
| 2012-10-22 | Simplify the AST representation of ty param bounds | Tim Chevalier | -12/+6 | |
| 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-18 | rustc: Implement intra-crate static methods on anonymous trait ↵ | Patrick Walton | -17/+93 | |
| implementations. r=nmatsakis | ||||
| 2012-10-16 | rustc: Implement intra-crate static methods on anonymous trait implementations. | Patrick Walton | -109/+297 | |
| 2012-10-15 | Error out in resolve if structs try to capture type parameters | Tim Chevalier | -2/+2 | |
| Closes #3214 | ||||
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -257/+201 | |
| 2012-10-15 | rustc: Implement monomorphic default methods. r=nmatsakis | Patrick Walton | -6/+15 | |
| 2012-10-15 | Fix whitespace | Tim Chevalier | -2/+2 | |
| 2012-10-15 | Allow enum discriminator exprs to refer to declared consts | Tim Chevalier | -7/+51 | |
| Also some work towards #3521 Closes #2428 | ||||
| 2012-10-12 | remove ctor from ast (take 2) (no review: just dead code removal) | Niko Matsakis | -64/+15 | |
| 2012-10-12 | Use the Nth impl when translating a static method call, instead | Niko Matsakis | -0/+1 | |
| of the 0th. 0th is only correct when there are no bound tps on the trait. Fixes #3741. | ||||
| 2012-10-12 | Replace several common macros of the form #m[...] with m!(...) | Kevin Cantu | -2/+2 | |
| This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages... | ||||
| 2012-10-08 | Revert "remove ctor from ast" | Tim Chevalier | -15/+64 | |
| This reverts commit ed3689d57c988e1dd477930d957c4308c37d1a64. | ||||
| 2012-10-08 | remove ctor from ast | Niko Matsakis | -64/+15 | |
| 2012-10-05 | rustc: Implement simple trait inheritance. | Patrick Walton | -3/+3 | |
| Generic trait inheritance, cross-crate trait inheritance, and vtable-based trait inheritance don't work yet. | ||||
| 2012-10-02 | rustc: Only allow imports marked with "pub" to be imported from other modules | Patrick Walton | -4/+19 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -1/+1 | |
| 2012-09-27 | rustc: Make enum export visibility inherit properly | Patrick Walton | -5/+10 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -3/+3 | |
| 2012-09-26 | replace resolve::Atom with ast::ident. | Erick Tryzelaar | -142/+129 | |
| 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-26 | Allow hashmaps to infer their types | Erick Tryzelaar | -1/+1 | |
| 2012-09-25 | Respect privacy qualifiers on view items, add to import resolutions. | Graydon Hoare | -54/+76 | |
| 2012-09-24 | Build the export_map2 from visibility markers, unless #[legacy_exports]; | Graydon Hoare | -11/+60 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -54/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-21 | rustc: Make x-ray resolution work with non-legacy-exports | Brian Anderson | -1/+1 | |
| Code generated for the test runner needs to break visibility rules | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -10/+10 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -21/+69 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | Remove export_map from resolve, just use export_map2. | Graydon Hoare | -20/+1 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+54 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -30/+30 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -11/+11 | |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -3/+3 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -3/+3 | |
| 2012-09-11 | Make moves explicit in rustc | Tim Chevalier | -1/+1 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -18/+18 | |
| 2012-09-10 | Convert class methods to impl methods. Stop parsing class methods | Brian Anderson | -12/+24 | |
| 2012-09-10 | rustc: Make shape-based compare glue never called for comparison operators. | Patrick Walton | -4/+18 | |
| Only called for string patterns. | ||||
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -1/+1 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -2/+2 | |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -1/+1 | |
| 2012-09-07 | Remove support for multiple traits in a single impl | Tim Chevalier | -7/+7 | |
| There was half-working support for them, but they were never fully implemented or even approved. Remove them altogether. Closes #3410 | ||||
