| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-09-23 | test: Fix rustdoc and tests. | Patrick Walton | -13/+2 | |
| 2013-09-23 | libsyntax: Introduce routines and remove all `@fn`s from libsyntax save the ↵ | Patrick Walton | -26/+10 | |
| old visitor | ||||
| 2013-09-23 | librustc: Change fold to use traits instead of `@fn`. | Patrick Walton | -805/+635 | |
| 2013-09-13 | Work around a compiler crash folding labeled break. #9129 | Brian Anderson | -2/+10 | |
| Servo is hitting this problem, so this is a workaround for a lack of a real solution. | ||||
| 2013-09-10 | change type of ExprLoop and ExprBreak elts from ident->name. | John Clements | -2/+5 | |
| Lots of downstream changes in librustc, should be infinitesimally faster. | ||||
| 2013-09-10 | Delay assignment of node ids until after expansion. Ensures that each AST node | Niko Matsakis | -149/+213 | |
| has a unique id. Fixes numerous bugs in macro expansion and deriving. Add two representative tests. Fixes #7971 Fixes #6304 Fixes #8367 Fixes #8754 Fixes #8852 Fixes #2543 Fixes #7654 | ||||
| 2013-09-09 | auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson | bors | -6/+1 | |
| Also redefine all of the standard logging macros to use more rust code instead of custom LLVM translation code. This makes them a bit easier to understand, but also more flexibile for future types of logging. Additionally, this commit removes the LogType language item in preparation for changing how logging is performed. | ||||
| 2013-09-08 | syntax: implement labelled breaks for `for`. | Huon Wilson | -3/+4 | |
| `for` desugars to `loop` so it is trivial to just desugar to `loop` while retaining any label. | ||||
| 2013-09-06 | comment fix | John Clements | -1/+1 | |
| 2013-09-06 | capturing macros now implemented | John Clements | -0/+1 | |
| 2013-09-06 | add fold_mac field to fold.rs | John Clements | -24/+38 | |
| 2013-09-06 | rework fold so that fold_tts takes an ast_fold rather than a thunk, stop ↵ | John Clements | -6/+8 | |
| using closures in ident traversal | ||||
| 2013-09-06 | add temporarily unused ctxt field to mac_invoc_tt | John Clements | -2/+3 | |
| 2013-09-06 | fixed bug in fold's traversal of cast exprs | John Clements | -1/+1 | |
| 2013-09-06 | new test that uncovers bug in fold | John Clements | -0/+11 | |
| 2013-09-06 | remove FIXME #2888, now bug is fixed | John Clements | -3/+2 | |
| 2013-09-06 | adding test case to check marking/unmarking | John Clements | -2/+2 | |
| 2013-09-06 | refactor so tt_fold only requires an ident->ident fn | John Clements | -9/+11 | |
| 2013-09-05 | Remove the __log function for __log_level | Alex Crichton | -6/+1 | |
| Also redefine all of the standard logging macros to use more rust code instead of custom LLVM translation code. This makes them a bit easier to understand, but also more flexibile for future types of logging. Additionally, this commit removes the LogType language item in preparation for changing how logging is performed. | ||||
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -114/+114 | |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -6/+6 | |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -22/+22 | |
| 2013-08-28 | auto merge of #8718 : bblum/rust/typeof, r=pcwalton | bors | -0/+1 | |
| r? anybody | ||||
| 2013-08-27 | librustc: Add support for type parameters in the middle of paths. | Patrick Walton | -3/+5 | |
| For example, `foo::<T>::bar::<U>`. This doesn't enforce that the type parameters are in the right positions, however. | ||||
| 2013-08-23 | Parse and reserve typeof keyword. #3228 | Ben Blum | -0/+1 | |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -5/+5 | |
| cc #5898 | ||||
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -1/+1 | |
| cc #7887 | ||||
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -11/+11 | |
| 2013-08-04 | rm obsolete `for` support from the compiler | Daniel Micay | -1/+0 | |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -1/+1 | |
| this has been replaced by `for` | ||||
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -2/+1 | |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -1/+1 | |
| 2013-08-01 | make `in` and `foreach` get treated as keywords | Daniel Micay | -1/+1 | |
| 2013-07-30 | syntax: implement foreach .. in .. { .. } via desugaring. | Graydon Hoare | -0/+5 | |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, ↵ | Michael Woerister | -10/+8 | |
| blk_check_mode, ty_field, ty_method} | ||||
| 2013-07-22 | De-spanned<T> and renamed ast::field (now ast::Field) | Michael Woerister | -6/+4 | |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -23/+23 | |
| `crate => Crate` `local => Local` `blk => Block` `crate_num => CrateNum` `crate_cfg => CrateConfig` Also, Crate and Local are not wrapped in spanned<T> anymore. | ||||
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -14/+13 | |
| This does a number of things, but especially dramatically reduce the number of allocations performed for operations involving attributes/ meta items: - Converts ast::meta_item & ast::attribute and other associated enums to CamelCase. - Converts several standalone functions in syntax::attr into methods, defined on two traits AttrMetaMethods & AttributeMethods. The former is common to both MetaItem and Attribute since the latter is a thin wrapper around the former. - Deletes functions that are unnecessary due to iterators. - Converts other standalone functions to use iterators and the generic AttrMetaMethods rather than allocating a lot of new vectors (e.g. the old code would have to allocate a new vector to use functions that operated on &[meta_item] on &[attribute].) - Moves the core algorithm of the #[cfg] matching to syntax::attr, similar to find_inline_attr and find_linkage_metas. This doesn't have much of an effect on the speed of #[cfg] stripping, despite hugely reducing the number of allocations performed; presumably most of the time is spent in the ast folder rather than doing attribute checks. Also fixes the Eq instance of MetaItem_ to correctly ignore spaces, so that `rustc --cfg 'foo(bar)'` now works. | ||||
| 2013-07-17 | libsyntax: Remove some multi-gigabyte clones that were preventing ↵ | Patrick Walton | -2/+2 | |
| bootstrapping on Windows. | ||||
| 2013-07-17 | librustc: Remove `copy` expressions from the language. | Patrick Walton | -1/+0 | |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -18/+21 | |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -11/+15 | |
| 2013-07-17 | Made ast::blk not use spanned<T> anymore. | Michael Woerister | -6/+6 | |
| 2013-07-07 | Fix broken tests | James Miller | -3/+3 | |
| 2013-07-07 | De-share ast::Ty | James Miller | -24/+24 | |
| 2013-07-07 | De-manage OptVec<TyParamBounds> | James Miller | -4/+5 | |
| 2013-07-07 | De-share trait_ref | James Miller | -6/+6 | |
| Also, makes the pretty-printer use & instead of @ as much as possible, which will help with later changes, though in the interim has produced some... interesting constructs. | ||||
| 2013-07-07 | De-managed ast::Path | James Miller | -13/+13 | |
| 2013-07-07 | Stop allocating view_items with @ | James Miller | -7/+6 | |
| 2013-07-04 | Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by ↵ | Huon Wilson | -3/+1 | |
| iterators. | ||||
