| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-03-20 | Refactor the self-info so that the def-id is carried in ty_self() | Niko Matsakis | -1/+1 | |
| and the fn_ctxt doesn't need any self_info field at all. Step towards fixing `fn(&self)` (cc #4846) to have a distinct lifetime. | ||||
| 2013-03-19 | auto merge of #5426 : nikomatsakis/rust/issue-4846-lifetimes-in-expl-self, ↵ | bors | -7/+7 | |
| r=pcwalton (this will be needed for snapshotting at some point) r? @pcwalton | ||||
| 2013-03-18 | Fix pretty printer for fixed length vectors. | Luqman Aden | -1/+0 | |
| 2013-03-18 | Allow constant expressions in [Type * n]. | Luqman Aden | -1/+1 | |
| 2013-03-18 | Make &self permit explicit lifetimes, but don't really use them | Niko Matsakis | -7/+7 | |
| (this will be needed for snapshotting at some point). | ||||
| 2013-03-15 | Actually pass inline asm operands around. | Luqman Aden | -2/+4 | |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -1/+1 | |
| and obsolete `-` mode altogether (it *was* parsed as `+` mode). | ||||
| 2013-03-12 | Add alignstack option for inline asm. | Luqman Aden | -2/+2 | |
| 2013-03-12 | Keep everything tidy. | Luqman Aden | -1/+1 | |
| 2013-03-12 | Parse operands properly and add a way to indicate volatile asm. | Luqman Aden | -1/+2 | |
| 2013-03-12 | Parse inline assembly. | Luqman Aden | -0/+2 | |
| 2013-03-11 | libsyntax: Remove newtype enums from libsyntax. rs=deenum | Patrick Walton | -6/+1 | |
| 2013-03-11 | Implement vector destructuring from tail | Seo Sanghyeon | -1/+3 | |
| 2013-03-09 | Remove @ast::Region and replace with @ast::Lifetime. | Niko Matsakis | -25/+7 | |
| Modify pretty-printer to emit lifetimes and fix a few minor parser bugs that this uncovered. | ||||
| 2013-03-07 | librustc: Stop parsing `assert`. | Patrick Walton | -3/+0 | |
| 2013-03-07 | librustc: Remove record patterns from the compiler | Patrick Walton | -1/+0 | |
| 2013-03-07 | libsyntax: Remove struct literal expressions from the compiler | Patrick Walton | -1/+0 | |
| 2013-03-07 | librustc: Remove structural record types from the compiler | Patrick Walton | -1/+0 | |
| 2013-03-06 | auto merge of #5255 : jbclements/rust/remove-parse-value-ident, r=graydon | bors | -0/+4 | |
| After the removal of the "restricted keyword" feature in 0c82c00dc4f49aeb9b57c92c9a40ae35d8a1ee29 , there's no longer any difference between parse_ident() and parse_value_ident(), and therefore no difference between parse parse_path_without_tps() and parse_value_path(). I've collapsed all of these, removing the redundant functions and eliminating the need for two higher-order arguments. | ||||
| 2013-03-06 | Fix a bug with region-parameterized enums etc where trans considered | Niko Matsakis | -2/+8 | |
| them to be non-monomorphic. Merely having lifetime parameters is not enough to qualify for that status. Fixes #5243. | ||||
| 2013-03-06 | removed unused abstraction over paths and value_paths | John Clements | -0/+4 | |
| 2013-03-05 | Update region inference for traits so that a method with | Niko Matsakis | -0/+9 | |
| explicit self doesn't incorrectly cause the entire trait to be tagged as being region-parameterized. Fixes #5224. | ||||
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -4/+4 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -2/+0 | |
| 2013-03-02 | librustc: Stop parsing `fn@`, `fn~`, and `fn&` | Patrick Walton | -4/+0 | |
| 2013-03-01 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -1/+1 | |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -1/+1 | |
| 2013-02-28 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -15/+34 | |
| 2013-02-27 | auto merge of #5141 : nikomatsakis/rust/region-syntax-expl-lifetimes, ↵ | bors | -15/+34 | |
| r=nikomatsakis Major changes are: - replace ~[ty_param] with Generics structure, which includes both OptVec<TyParam> and OptVec<Lifetime>; - the use of syntax::opt_vec to avoid allocation for empty lists; cc #4846 r? @graydon | ||||
| 2013-02-27 | Introduce lifetime declarations into the lists of type parameters. | Niko Matsakis | -15/+34 | |
| Major changes are: - replace ~[ty_param] with Generics structure, which includes both OptVec<TyParam> and OptVec<Lifetime>; - the use of syntax::opt_vec to avoid allocation for empty lists; cc #4846 | ||||
| 2013-02-27 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -25/+55 | |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -24/+24 | |
| 2013-02-26 | Macros now leave scope | John Clements | -1/+31 | |
| Macro scope is now delimited by function, block, and module boundaries, except for modules that are marked with #[macro_escape], which allows macros to escape. | ||||
| 2013-02-25 | libsyntax: Convert ast::attribute_ to store a @meta_item | Erick Tryzelaar | -1/+1 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -3/+3 | |
| 2013-02-19 | convert ast::meta_items to take @~strs | Erick Tryzelaar | -3/+3 | |
| 2013-02-17 | libsyntax: Update view_item_use/import to reflect actual usage | Luqman Aden | -2/+2 | |
| 2013-02-16 | Permit lifetimes to appear in type parameter lists and after `&`. Lifetimes in | Niko Matsakis | -0/+6 | |
| type parameter lists are currently ignored, but `&'a T` is equivalent to `&a/T`. | ||||
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ↵ | Patrick Walton | -24/+24 | |
| slipped through. r=tjc | ||||
| 2013-02-13 | auto merge of #4922 : jbclements/rust/add-deriving-eq-to-asts, r=catamorphism | bors | -515/+122 | |
| r? Apply deriving_eq to the data structures in ast.rs, and get rid of the custom definitions of eq that were everywhere. resulting ast.rs is about 400 lines shorter. Also: add a few test cases and a bunch of comments. Also: change ast_ty_to_ty_cache to use node ids rather than ast::ty's. I believe this was a suggestion related to my changes, and it appears to pass all tests. Also: tiny doc fix, remove references to crate keywords. | ||||
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -2/+2 | |
| 2013-02-13 | add test case | John Clements | -1/+30 | |
| 2013-02-13 | finish deriving_eq in ast | John Clements | -11/+2 | |
| 2013-02-13 | deriving-eq all over ast | John Clements | -502/+80 | |
| 2013-02-13 | Commenting, test cases, cleanup | John Clements | -1/+10 | |
| 2013-02-08 | Add and lex LIFETIME tokens | Niko Matsakis | -5/+1 | |
| cc #4846 | ||||
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -21/+61 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-02-03 | core: convert ToStr::to_str to take explicit &self | Erick Tryzelaar | -10/+10 | |
| 2013-02-01 | Merge remote-tracking branch 'nickdesaulniers/issue4524' into nocomm1 | Brian Anderson | -2/+1 | |
| 2013-02-01 | Remove fail keyword from lexer & parser and clean up remaining calls to | Nick Desaulniers | -2/+1 | |
| fail Fix merge conflicts - Issue 4524 | ||||
