| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | ||||
| 2013-01-31 | test cases, cleanup | John Clements | -5/+1 | |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -2/+2 | |
| 2013-01-31 | Workaround for #4717: pad contents of ast. rs=breakage | Niko Matsakis | -1/+4 | |
| 2013-01-31 | Finalize moves-based-on-type implementation. | Niko Matsakis | -57/+8 | |
| Changes: - Refactor move mode computation - Removes move mode arguments, unary move, capture clauses (though they still parse for backwards compatibility) - Simplify how moves are handled in trans - Fix a number of illegal copies that cropped up - Workaround for bug involving def-ids in params (see details below) Future work (I'll open bugs for these...): - Improve error messages for moves that are due to bindings - Add support for moving owned content like a.b.c to borrow check, test in trans (but I think it'll "just work") - Proper fix for def-ids in params Def ids in params: Move captures into a map instead of recomputing. This is a workaround for a larger bug having to do with the def-ids associated with ty_params, which are not always properly preserved when inlining. I am not sure of my preferred fix for the larger bug yet. This current fix removes the only code in trans that I know of which relies on ty_param def-ids, but feels fragile. | ||||
| 2013-01-30 | librustc: Remove legacy exports from the language. r=brson | Patrick Walton | -1/+0 | |
| 2013-01-29 | libsyntax: De-export a lot of libsyntax. rs=deëxporting | Patrick Walton | -157/+157 | |
| 2013-01-28 | Add to_str() definitions for some AST types | Niko Matsakis | -0/+18 | |
| r=brson | ||||
| 2013-01-23 | renaming to adhere to conventions | John Clements | -2/+0 | |
| 2013-01-22 | Add is_mutbl field to def_arg | Seo Sanghyeon | -3/+4 | |
| 2013-01-22 | Add is_mutbl field to arg | Seo Sanghyeon | -1/+1 | |
| 2013-01-20 | convert the remaining ast record types into structs | Erick Tryzelaar | -22/+58 | |
| These are: region,arg,fn_decl,method,_mod,foreign_mod, variant_arg,enum_def_,variant_,trait_ref. | ||||
| 2013-01-20 | convert ast::{ty_field_,ty_method} into a struct | Erick Tryzelaar | -4/+14 | |
| 2013-01-20 | convert ast::ty into a struct | Erick Tryzelaar | -1/+5 | |
| 2013-01-20 | convert ast::expr into a struct | Erick Tryzelaar | -2/+8 | |
| 2013-01-14 | convert ast::{field_,capture_item_,mt} and middle::ty::mt into structs | Erick Tryzelaar | -5/+12 | |
| 2013-01-14 | Convert ast::{pat,field_pat,local_,arm} into structs | Erick Tryzelaar | -5/+21 | |
| 2013-01-14 | convert ast::blk_ into a struct | Erick Tryzelaar | -5/+7 | |
| 2013-01-14 | convert ast::crate_ into a struct. | Erick Tryzelaar | -4/+5 | |
| 2013-01-14 | convert ast::pat_list_ident_ to a struct | Erick Tryzelaar | -1/+4 | |
| 2013-01-14 | convert ast::attribute_ and ast::view_item to a struct | Erick Tryzelaar | -3/+11 | |
| 2013-01-14 | convert ast::struct_field_ into a struct | Erick Tryzelaar | -3/+3 | |
| 2013-01-14 | convert ast::struct_def to a struct | Erick Tryzelaar | -2/+2 | |
| 2013-01-14 | convert ast::item into a struct | Erick Tryzelaar | -3/+8 | |
| 2013-01-14 | convert ast::struct_dtor_ into a struct | Erick Tryzelaar | -4/+6 | |
| 2013-01-14 | convert ast::foreign_item to a struct | Erick Tryzelaar | -7/+8 | |
| 2013-01-14 | change ast::ty_param into a struct. | Erick Tryzelaar | -1/+5 | |
| 2013-01-14 | Convert ast::def_id into a struct. | Erick Tryzelaar | -1/+4 | |
| 2013-01-14 | Change ast::path into a struct. | Erick Tryzelaar | -5/+7 | |
| 2013-01-14 | removed self-import (minor cleanup) | John Clements | -8/+7 | |
| 2013-01-10 | librustc: Implement `&static` as the replacement for `Durable`. r=nmatsakis | Patrick Walton | -1/+4 | |
| 2013-01-09 | A collection of refactorings that I found it hard/tiresome to divide: | Niko Matsakis | -14/+24 | |
| - Make `extern fn()` assignable to any closure type, rather than a subtype. - Remove unused int_ty_set and float_ty_set - Refactor variable unification and make it more DRY - Do fn sub/lub/glb on the level of fn_sig - Rename infer::to_str::ToStr to infer::to_str::InferStr - Capitalize names of various types - Correct hashing of FnMeta - Convert various records-of-fns into structs-of-fns. This is both eliminating use of deprecated features and more forwards compatible with fn reform. r=pcwalton | ||||
| 2013-01-09 | syntax: convert ast::spanned into a struct | Erick Tryzelaar | -2/+1 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -7/+8 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -8/+7 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -7/+8 | |
| module scope. r=tjc | ||||
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -1/+8 | |
| contain at least two components. r=graydon | ||||
| 2012-12-17 | Switch from serialization to std::serialize. (snapshot) | Erick Tryzelaar | -174/+171 | |
| 2012-12-17 | Add support for destructuring vectors in match expressions | Jakub Wieczorek | -0/+1 | |
