| Age | Commit message (Expand) | Author | Lines |
| 2015-12-09 | Auto merge of #30145 - petrochenkov:hyg, r=nrc | bors | -16/+14 |
| 2015-12-07 | Remove some unnecessary indirection from HIR structures | Vadim Petrochenkov | -3/+2 |
| 2015-12-05 | Do MTWT resolution during lowering to HIR | Vadim Petrochenkov | -16/+14 |
| 2015-12-01 | Fixes #30089 | Jeffrey Seyfried | -7/+0 |
| 2015-11-28 | Auto merge of #29383 - petrochenkov:empstr, r=pnkfelix | bors | -1/+1 |
| 2015-11-27 | Auto merge of #30064 - fhartwig:macro-suggestions, r=sanxiyn | bors | -6/+2 |
| 2015-11-27 | Introduce max_suggestion_distance function to avoid duplicating the heuristic | Florian Hartwig | -6/+2 |
| 2015-11-26 | split the metadata code into rustc_metadata | Ariel Ben-Yehuda | -1/+1 |
| 2015-11-26 | remove csearch from resolve and typeck | Ariel Ben-Yehuda | -4/+3 |
| 2015-11-26 | Add suggestion of similar macro names to `macro undefined` error message | Florian Hartwig | -1/+1 |
| 2015-11-25 | Remove all uses of `#[staged_api]` | Vadim Petrochenkov | -1/+1 |
| 2015-11-23 | Auto merge of #29530 - jseyfried:resolve, r=nikomatsakis | bors | -496/+233 |
| 2015-11-22 | Look up macro names as well when suggesting replacements for function resolve... | Manish Goregaokar | -5/+21 |
| 2015-11-19 | Fix the fallout | Vadim Petrochenkov | -1/+1 |
| 2015-11-18 | Various straight-forward ports that override `visit_nested_items` | Niko Matsakis | -34/+38 |
| 2015-11-18 | Refactor away get_module_if_available and get_module and reformat one-liners | Jeffrey Seyfried | -53/+32 |
| 2015-11-17 | Fix issue #21546 and refactor NsDef | Jeffrey Seyfried | -26/+30 |
| 2015-11-16 | ImplItem_ -> ImplItemKind rename | Oliver Schneider | -4/+4 |
| 2015-11-16 | rename ImplItem_::*ImplItem to ImplItem_::* | Oliver Schneider | -7/+6 |
| 2015-11-16 | Refactor fields def_id and kind of Module into a single field def. | Jeffrey Seyfried | -100/+82 |
| 2015-11-16 | Replace `TypeNsDef` and `ValueNsDef` with a more general type `NsDef`. | Jeffrey Seyfried | -387/+159 |
| 2015-11-14 | rustfmt librustc_resolve | corentih | -716/+748 |
| 2015-11-12 | Fixup tidy | Manish Goregaokar | -3/+7 |
| 2015-11-12 | Add more comprehensive diagnostics for irrefutable pattern error with constants | Manish Goregaokar | -7/+15 |
| 2015-11-04 | Unwrap the RefCell around DefMap | Jonathan S | -2/+2 |
| 2015-11-03 | Remove the RefCell around freevars and freevars_seen in librustc_resolve | Jonathan S | -11/+10 |
| 2015-11-03 | resolve: don't speculatively create freevars when resolving | Ariel Ben-Yehuda | -151/+149 |
| 2015-10-25 | std: Stabilize library APIs for 1.5 | Alex Crichton | -1/+0 |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Provide span for visit_struct_def + remove some dead code | Vadim Petrochenkov | -1/+2 |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -2/+2 |
| 2015-10-13 | Unify structures and enum variants in HIR | Vadim Petrochenkov | -13/+1 |
| 2015-10-01 | Introduce semi-duplicate DefIds into DefLocal/DefUpvar to remove use | Niko Matsakis | -4/+6 |
| 2015-10-01 | move direct accesses of `node` to go through `as_local_node_id`, unless | Niko Matsakis | -9/+9 |
| 2015-10-01 | move job of creating local-def-ids to ast-map (with a few stragglers) | Niko Matsakis | -2/+3 |
| 2015-09-29 | Fill in some missing parts in the default HIR visitor | Vadim Petrochenkov | -4/+4 |
| 2015-09-24 | Cleanup interfaces of Name, SyntaxContext and Ident | Vadim Petrochenkov | -1/+1 |
| 2015-09-23 | Remove random Idents outside of libsyntax | Vadim Petrochenkov | -2/+2 |
| 2015-09-22 | Use Names in the remaining HIR structures with exception of... | Vadim Petrochenkov | -3/+3 |
| 2015-09-22 | Use Names in path fragments and MacroDef | Vadim Petrochenkov | -6/+6 |
| 2015-09-22 | Use Names in hir::{Field, ExprMethodCall, ExprField} | Vadim Petrochenkov | -4/+4 |
| 2015-09-22 | Use Names in HIR Items | Vadim Petrochenkov | -6/+6 |
| 2015-09-22 | Use Names in HIR visitors and folders | Vadim Petrochenkov | -1/+1 |
| 2015-09-17 | Resolve prefix in imports with empty braces | Vadim Petrochenkov | -6/+22 |
| 2015-09-16 | Use ast attributes every where (remove HIR attributes). | Nick Cameron | -5/+4 |
| 2015-09-15 | Auto merge of #28406 - petrochenkov:primitive, r=eddyb | bors | -2/+16 |
| 2015-09-15 | Prohibit renaming to primitive types' names in import lists | Vadim Petrochenkov | -2/+16 |
| 2015-09-11 | std: Stabilize/deprecate features for 1.4 | Alex Crichton | -1/+0 |
| 2015-09-06 | track, for each upvar, its index in list of upvars | Niko Matsakis | -14/+13 |
| 2015-09-03 | Use proper span for break and continue labels | Simonas Kazlauskas | -3/+3 |