| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-21 | rollup merge of #20179: eddyb/blind-items | Alex Crichton | -7/+0 | |
| Conflicts: src/librustc/diagnostics.rs src/librustdoc/clean/mod.rs src/librustdoc/html/format.rs src/libsyntax/parse/parser.rs | ||||
| 2015-01-21 | syntax: fix fallout of merging ast::ViewItem into ast::Item. | Eduard Burtescu | -7/+0 | |
| 2015-01-17 | libsyntax: uint types to usize | Paul Collier | -2/+2 | |
| 2014-12-13 | libsyntax: use unboxed closures | Jorge Aparicio | -1/+3 | |
| 2014-11-17 | libsyntax: Add tests for `parse_view_item` | Murarth | -0/+7 | |
| 2014-09-14 | syntax: tests: fix fallout from using ptr::P. | Eduard Burtescu | -3/+1 | |
| 2014-09-14 | syntax: fix fallout from using ptr::P. | Eduard Burtescu | -4/+5 | |
| 2014-09-03 | Fix spelling errors and capitalization. | Joseph Crail | -2/+2 | |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -19/+19 | |
| 2014-06-14 | rustc: Obsolete the `@` syntax entirely | Alex Crichton | -4/+6 | |
| This removes all remnants of `@` pointers from rustc. Additionally, this removes the `GC` structure from the prelude as it seems odd exporting an experimental type in the prelude by default. Closes #14193 [breaking-change] | ||||
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -2/+2 | |
| [breaking-change] | ||||
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -8/+8 | |
| [breaking-change] | ||||
| 2014-05-08 | libsyntax: Remove uses of `~str` from libsyntax, and fix fallout | Patrick Walton | -10/+14 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -2/+2 | |
| 2014-03-30 | Removed deprecated functions `map` and `flat_map` for vectors and slices. | Marvin Löbel | -1/+1 | |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -2/+0 | |
| It's now in the prelude. | ||||
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 | |
| Closes #12771 | ||||
| 2014-03-17 | Fix rustdoc and tests. | Eduard Burtescu | -1/+2 | |
| 2014-03-17 | De-@ ParseSess uses. | Eduard Burtescu | -26/+7 | |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -0/+2 | |
| 2014-03-01 | libsyntax: Mechanically change `~[T]` to `Vec<T>` | Patrick Walton | -6/+6 | |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -2/+2 | |
| 2014-02-03 | syntax: Remove usage of io_error in tests | Alex Crichton | -9/+9 | |
| 2014-02-02 | libsyntax: Fix tests. | Patrick Walton | -2/+2 | |
| 2014-02-02 | librustc: Stop using `@str` for source. | Patrick Walton | -11/+11 | |
| 2014-01-21 | Remove unnecessary parentheses. | Huon Wilson | -1/+1 | |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -5/+5 | |
| 2014-01-03 | librustc: De-`@mut` the parse session | Patrick Walton | -3/+3 | |
| 2014-01-02 | libsyntax: Fix test and merge fallout. | Patrick Walton | -1/+1 | |
| 2013-11-26 | test: Remove all remaining non-procedure uses of `do`. | Patrick Walton | -8/+8 | |
| 2013-11-19 | libsyntax: Change all uses of `&fn` to `||`. | Patrick Walton | -1/+1 | |
| 2013-09-29 | Remove all usage of @ast::Crate | Alex Crichton | -2/+2 | |
| 2013-09-06 | added string_to_tts | John Clements | -0/+6 | |
| 2013-09-06 | add hygiene support fns, move them around. | John Clements | -8/+7 | |
| also adds test cases | ||||
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -3/+3 | |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -1/+1 | |
| 2013-07-25 | syntax: Fix #6416 by aborting on errors after test parse. | Graydon Hoare | -5/+22 | |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -1/+1 | |
| `crate => Crate` `local => Local` `blk => Block` `crate_num => CrateNum` `crate_cfg => CrateConfig` Also, Crate and Local are not wrapped in spanned<T> anymore. | ||||
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -1/+0 | |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -11/+11 | |
| This almost removes the StringRef wrapper, since all strings are Equiv-alent now. Removes a lot of `/* bad */ copy *`'s, and converts several things to be &'static str (the lint table and the intrinsics table). There are many instances of .to_managed(), unfortunately. | ||||
| 2013-06-06 | add test cases for fold traversing macros | John Clements | -0/+78 | |
| 2013-06-05 | add hygiene support functions | John Clements | -1/+2 | |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -4/+14 | |
| 2013-05-20 | getting rid of interner_key! macro | John Clements | -45/+3 | |
| 2013-05-20 | hygiene infrastructure. | John Clements | -12/+18 | |
| - added a hash table to memoize rename and mark operations. - added rename, mark, and resolve fold fns | ||||
| 2013-05-20 | refactoring test functions | John Clements | -0/+96 | |
