| Age | Commit message (Expand) | Author | Lines |
| 2016-04-04 | Auto merge of #32328 - jseyfried:coherence, r=nikomatsakis | bors | -201/+196 |
| 2016-04-04 | Remove outdated comment | Seo Sanghyeon | -20/+5 |
| 2016-03-31 | librustc_resolve: use bug!(), span_bug!() | Benjamin Herr | -13/+14 |
| 2016-03-31 | Fix suggestions | Jeffrey Seyfried | -2/+8 |
| 2016-03-30 | Detect cycles that include renamed imports | Jeffrey Seyfried | -16/+25 |
| 2016-03-27 | Improve import failure detection | Jeffrey Seyfried | -23/+19 |
| 2016-03-27 | Add `SingleImports` and use it in place of `outstanding_references` | Jeffrey Seyfried | -104/+114 |
| 2016-03-27 | Refactor ModuleS fields `public_glob_count`, `private_glob_count`, and | Jeffrey Seyfried | -57/+25 |
| 2016-03-27 | Avoid recomputing the target module for an import directive. | Jeffrey Seyfried | -7/+10 |
| 2016-03-27 | Add a field `target_module: Cell<Option<Module>>` to `ImportDirective` | Jeffrey Seyfried | -0/+3 |
| 2016-03-27 | Add a type parameter to ImportDirective | Jeffrey Seyfried | -14/+14 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -3/+3 |
| 2016-03-27 | rustc: move middle::subst into middle::ty. | Eduard Burtescu | -1/+1 |
| 2016-03-26 | Cleanup trait search | Jeffrey Seyfried | -10/+7 |
| 2016-03-26 | Remove unnecessary `pub`s | Jeffrey Seyfried | -24/+20 |
| 2016-03-26 | Remove an `if` statement with an condition that is always false | Jeffrey Seyfried | -1/+0 |
| 2016-03-26 | Remove outdated comment | Jeffrey Seyfried | -3/+0 |
| 2016-03-26 | Improve the error message for paths with too many initial `super`s | Jeffrey Seyfried | -20/+6 |
| 2016-03-26 | Refactor away `resolve_import_for_module` | Jeffrey Seyfried | -16/+14 |
| 2016-03-26 | Avoid passing around the current module as an argument in `resolve_imports` | Jeffrey Seyfried | -31/+17 |
| 2016-03-26 | Refactor away `resolve_name_in_lexical_scope` and `resolve_identifier_in_loca... | Jeffrey Seyfried | -81/+42 |
| 2016-03-26 | Refactor out the common functionality of | Jeffrey Seyfried | -52/+61 |
| 2016-03-26 | Replace uses of `DefLike` with `Def` (only the `DlDef` variant of `DefLike` w... | Jeffrey Seyfried | -34/+16 |
| 2016-03-26 | Refactor away GraphBuilder | Jeffrey Seyfried | -38/+11 |
| 2016-03-26 | Make populate_module_if_necessary a method of resolver | Jeffrey Seyfried | -20/+16 |
| 2016-03-26 | Avoid repeating parent | Jeffrey Seyfried | -25/+11 |
| 2016-03-26 | Refactor away populate_external_module | Jeffrey Seyfried | -25/+4 |
| 2016-03-26 | Refactor away handle_external_def | Jeffrey Seyfried | -67/+36 |
| 2016-03-26 | Rollup merge of #32131 - petrochenkov:prim, r=eddyb | Manish Goregaokar | -100/+30 |
| 2016-03-25 | Add and use `resolve_name_in_lexical_scope` and | Jeffrey Seyfried | -7/+20 |
| 2016-03-25 | Refactor away `NameResolution::result` | Jeffrey Seyfried | -16/+10 |
| 2016-03-25 | Refactor away DefModifiers::PRELUDE | Jeffrey Seyfried | -17/+12 |
| 2016-03-25 | Refactor how the prelude is handled | Jeffrey Seyfried | -30/+21 |
| 2016-03-25 | Refactor away resolve_imports::Shadowable and rename shadowable -> is_prelude | Jeffrey Seyfried | -23/+10 |
| 2016-03-25 | Auto merge of #31908 - jseyfried:disallow_shadowed_traits, r=nikomatsakis | bors | -3/+3 |
| 2016-03-25 | Cleanup | Vadim Petrochenkov | -30/+18 |
| 2016-03-25 | Lift the restriction on reusing names of primitive types | Vadim Petrochenkov | -84/+1 |
| 2016-03-25 | Introduce name resolution fallback for primitive types | Vadim Petrochenkov | -12/+37 |
| 2016-03-21 | Expose attached attributes to `FnKind` abstraction so that I can look at them... | Felix S. Klock II | -3/+3 |
| 2016-03-20 | Alter E0412 help message wording | tiehuis | -1/+1 |
| 2016-03-17 | Disallow methods from shadowed traits | Jeffrey Seyfried | -3/+3 |
| 2016-03-16 | Improve diagnostics for duplicate names | Jeffrey Seyfried | -104/+63 |
| 2016-03-13 | Auto merge of #32227 - jseyfried:fix_import_resolution_bug, r=alexcrichton | bors | -22/+27 |
| 2016-03-13 | Fixes #32222 | Jeffrey Seyfried | -8/+6 |
| 2016-03-13 | Refactor out methods `NameResolution::increment_outstanding_references` and | Jeffrey Seyfried | -15/+22 |
| 2016-03-12 | Auto merge of #32141 - jseyfried:fix_resolution_in_lexical_scopes, r=nikomats... | bors | -111/+52 |
| 2016-03-11 | Comment `resolve_item_in_lexical_scope` | Jeffrey Seyfried | -1/+8 |
| 2016-03-11 | Auto merge of #32134 - jseyfried:forbid_type_alias_as_module, r=nikomatsakis | bors | -5/+7 |
| 2016-03-09 | Auto merge of #32097 - jseyfried:fix_resolution_regression, r=nikomatsakis | bors | -21/+42 |
| 2016-03-09 | Forbid `use Trait::*` | Jeffrey Seyfried | -0/+4 |