| Age | Commit message (Expand) | Author | Lines |
| 2016-07-31 | Make "type aliases cannot be used for traits" a note instead of a span_label. | Jeffrey Seyfried | -16/+1 |
| 2016-07-31 | Clean up `resolve_trait_reference`. | Jeffrey Seyfried | -32/+31 |
| 2016-07-31 | Avoid emitting a unhelpful cascading resolution error. | Jeffrey Seyfried | -0/+2 |
| 2016-07-30 | Rollup merge of #35063 - jseyfried:avoid_importing_inaccessible_names, r=nrc | Manish Goregaokar | -9/+2 |
| 2016-07-27 | If a single import resolves to an inaccessible name in some but not all names... | Jeffrey Seyfried | -9/+2 |
| 2016-07-21 | Fix ICE happening when unresolved imports are used in patterns | Vadim Petrochenkov | -2/+2 |
| 2016-07-17 | Rename `mtwt` to `hygiene` | Jeffrey Seyfried | -1/+1 |
| 2016-07-17 | Clean up and encapsulate `syntax::ext::mtwt` | Jeffrey Seyfried | -11/+9 |
| 2016-07-15 | Include the `MacroDefinition` rib in the label ribs. | Jeffrey Seyfried | -4/+16 |
| 2016-07-14 | Implement `macro_rules!` placeholders and the macro scope map | Jeffrey Seyfried | -4/+35 |
| 2016-07-14 | Instead of renaming, treat differently marked identifiers as unequal | Jeffrey Seyfried | -27/+26 |
| 2016-07-14 | Move node id assigning into `resolve` | Jeffrey Seyfried | -0/+1 |
| 2016-07-08 | Stabilize `FnOnce::Output` + Fix rebase | petrochenkov | -3/+2 |
| 2016-07-08 | Do not generate Def::Err in bindings | Vadim Petrochenkov | -19/+13 |
| 2016-07-08 | Don't generate Def::Err if it's not stored in def_map immediately | Vadim Petrochenkov | -5/+5 |
| 2016-07-06 | Auto merge of #34655 - jseyfried:improve_resolver_api, r=nrc | bors | -1/+29 |
| 2016-07-06 | Rollup merge of #34636 - tshepang:shorten, r=GuillaumeGomez | Steve Klabnik | -2/+1 |
| 2016-07-05 | Add FIXME comment | Jeffrey Seyfried | -0/+1 |
| 2016-07-05 | Add method `with_module_lexical_scope` to `Resolver`. | Jeffrey Seyfried | -1/+28 |
| 2016-07-03 | doc: fix and shorten comment | Tshepang Lekhonkhobe | -2/+1 |
| 2016-07-01 | Add the `after_expand` entry point between import resolution and the rest of ... | Jeffrey Seyfried | -12/+0 |
| 2016-06-29 | Rollup merge of #34542 - jseyfried:fix_recursive_modules, r=nrc | Manish Goregaokar | -1/+3 |
| 2016-06-28 | Fix infinite loop on recursive module exports in an extern crate | Jeffrey Seyfried | -1/+3 |
| 2016-06-28 | groundwork: create the `Resolver` earlier in phase 2 | Jeffrey Seyfried | -7/+4 |
| 2016-06-28 | groundwork: refactor the interface that `resolve` exposes to `driver` | Jeffrey Seyfried | -45/+30 |
| 2016-06-28 | groundwork: use `resolve_identifier` instead of `resolve_path` to classify id... | Jeffrey Seyfried | -5/+6 |
| 2016-06-26 | Rollup merge of #34316 - jseyfried:refactor_ast_stmt, r=eddyb | Jeffrey Seyfried | -1/+1 |
| 2016-06-26 | Rollup merge of #33943 - jseyfried:libsyntax_cleanup, r=nrc | Jeffrey Seyfried | -4/+4 |
| 2016-06-25 | Rollup merge of #34403 - jonathandturner:move_liberror, r=alexcrichton | Jeffrey Seyfried | -7/+10 |
| 2016-06-25 | Rollup merge of #34368 - petrochenkov:astqpath, r=Manishearth | Jeffrey Seyfried | -11/+2 |
| 2016-06-25 | Rollup merge of #34213 - josephDunne:trait_item_macros, r=jseyfried | Jeffrey Seyfried | -0/+1 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -7/+10 |
| 2016-06-20 | Merge PatKind::QPath into PatKind::Path in AST | Vadim Petrochenkov | -11/+2 |
| 2016-06-18 | Remove unused functions calls and unused E0406 | Guillaume Gomez | -32/+0 |
| 2016-06-17 | Rename `ast::ExprKind::Again` -> `ast::ExprKind::Continue` | Jeffrey Seyfried | -1/+1 |
| 2016-06-14 | Remove the type parameter from `syntax::visit::Visitor` | Jeffrey Seyfried | -4/+4 |
| 2016-06-13 | Add support for macro expansion inside trait items | Joseph Dunne | -0/+1 |
| 2016-06-10 | Address review comments + fix rebase | Vadim Petrochenkov | -25/+25 |
| 2016-06-10 | Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos... | Vadim Petrochenkov | -36/+27 |
| 2016-06-10 | Move the hack with fake partial resolution for <A>::B from typeck to resolve | Vadim Petrochenkov | -83/+37 |
| 2016-06-10 | resolve: Rewrite resolve_pattern | Vadim Petrochenkov | -402/+279 |
| 2016-06-07 | Refactor away the prelude injection pass | Jeffrey Seyfried | -12/+20 |
| 2016-06-06 | Refactor away method `resolve_name_in_lexical_scope` of `ModuleS` | Jeffrey Seyfried | -22/+19 |
| 2016-06-02 | Auto merge of #33878 - GuillaumeGomez:improve_helps, r=jonathandturner | bors | -7/+15 |
| 2016-06-02 | Improve help messages for E0425 | ggomez | -7/+15 |
| 2016-05-30 | librustc_resolve: make sure pattern def gets recorded if `resolve_path` retur... | Daan Sprenkels | -7/+10 |
| 2016-05-27 | Rollup merge of #33644 - petrochenkov:selfast, r=nrc | Manish Goregaokar | -8/+4 |
| 2016-05-27 | Rollup merge of #33639 - petrochenkov:dotdot, r=nmatsakis | Manish Goregaokar | -1/+1 |
| 2016-05-27 | Rollup merge of #33351 - birkenfeld:loop-label-spans, r=pnkfelix | Manish Goregaokar | -3/+3 |
| 2016-05-26 | Implement `..` in tuple (struct) patterns | Vadim Petrochenkov | -1/+1 |