| Age | Commit message (Expand) | Author | Lines |
| 2016-05-02 | replace fileline_{help,note} with {help,note} | Niko Matsakis | -17/+12 |
| 2016-05-02 | diagnostics for E0432: imports are relative to crate root | Georg Brandl | -4/+7 |
| 2016-05-01 | Auto merge of #33190 - jseyfried:improve_diagnostics, r=nrc | bors | -120/+63 |
| 2016-04-29 | Auto merge of #33229 - timothy-mcroy:master, r=guillaumegomez | bors | -1/+45 |
| 2016-04-29 | Remove use of `ast_map.expect_item()` and improve diagnostics (fixes #33186) | Jeffrey Seyfried | -42/+41 |
| 2016-04-29 | Remove use of `ast_map.span_if_local()` and improve diagnostics | Jeffrey Seyfried | -11/+6 |
| 2016-04-29 | Revert #27493 | Jeffrey Seyfried | -67/+16 |
| 2016-04-28 | Add detailed error message for E0434 #32777 | Timothy McRoy | -1/+45 |
| 2016-04-28 | Address style nits | Jeffrey Seyfried | -2/+2 |
| 2016-04-27 | Avoid using the hir map when visibility checking in `resolve` | Jeffrey Seyfried | -6/+24 |
| 2016-04-27 | Refactor away a use of `ast_map.span_if_local()` | Jeffrey Seyfried | -3/+13 |
| 2016-04-27 | Refactor `resolve_crate_relative_path` and `resolve_module_relative_path` | Jeffrey Seyfried | -12/+16 |
| 2016-04-27 | Refactor away `get_trait_name` | Jeffrey Seyfried | -13/+4 |
| 2016-04-27 | Refactor away `is_static_method` | Jeffrey Seyfried | -25/+10 |
| 2016-04-27 | Refactor away `FallbackChecks` and remove dead code | Jeffrey Seyfried | -63/+6 |
| 2016-04-27 | Refactor field `span` of `NameBinding` from `Option<Span>` to `Span`. | Jeffrey Seyfried | -14/+13 |
| 2016-04-26 | Refactor away field `vis` of `ModuleS` | Jeffrey Seyfried | -45/+27 |
| 2016-04-24 | syntax: Check paths in visibilities for type parameters | Vadim Petrochenkov | -8/+7 |
| 2016-04-24 | syntax: Don't parse idents with `parse_path` | Vadim Petrochenkov | -1/+1 |
| 2016-04-24 | syntax: Make static/super/self/Self keywords + special ident cleanup | Vadim Petrochenkov | -8/+7 |
| 2016-04-19 | Auto merge of #33060 - jseyfried:cleanup_resolve, r=nrc | bors | -80/+62 |
| 2016-04-18 | resolve: improve performance | Jeffrey Seyfried | -11/+25 |
| 2016-04-18 | Update outdated comment | Jeffrey Seyfried | -2/+2 |
| 2016-04-17 | Refactor the per-module node map `module_children` into a per-resolver map. | Jeffrey Seyfried | -22/+22 |
| 2016-04-17 | Make import resolution and error resolution reporting deterministic. | Jeffrey Seyfried | -26/+22 |
| 2016-04-17 | Refactor `is_prelude` to only apply to glob imports | Jeffrey Seyfried | -30/+16 |
| 2016-04-17 | Rollup merge of #33046 - jseyfried:fix_unresolved_pattern_diagnostics, r=eddyb | Manish Goregaokar | -1/+1 |
| 2016-04-17 | Rollup merge of #33045 - jseyfried:no_def_modifiers, r=eddyb | Manish Goregaokar | -75/+56 |
| 2016-04-17 | Rollup merge of #33044 - petrochenkov:prefix, r=eddyb | Manish Goregaokar | -19/+35 |
| 2016-04-17 | resolve: Refactor away `DefModifiers` | Jeffrey Seyfried | -75/+56 |
| 2016-04-17 | Fix diagnostics for unresolved patterns | Jeffrey Seyfried | -1/+1 |
| 2016-04-17 | syntax: Parse import prefixes as paths | Vadim Petrochenkov | -19/+35 |
| 2016-04-14 | resolve: refactor away `PRIVATE_VARIANT` and ensure that restricted | Jeffrey Seyfried | -30/+32 |
| 2016-04-14 | resolve: use the `Restricted` variant of `ty::Visibility` when privacy checking | Jeffrey Seyfried | -30/+18 |
| 2016-04-14 | resolve: Use `vis: ty::Visibility` instead of `is_public: bool` | Jeffrey Seyfried | -105/+127 |
| 2016-04-12 | Auto merge of #32814 - jseyfried:improve_duplicate_glob_detection, r=nikomats... | bors | -14/+23 |
| 2016-04-11 | Add comments | Jeffrey Seyfried | -0/+4 |
| 2016-04-09 | Improve import resolution diagnostics | Jeffrey Seyfried | -3/+7 |
| 2016-04-08 | Detect duplicate glob imports arising from glob cycles | Jeffrey Seyfried | -13/+18 |
| 2016-04-07 | Rollup merge of #32789 - jseyfried:fix_duplicate_resolve_errors, r=eddyb | Manish Goregaokar | -66/+69 |
| 2016-04-07 | Fix tidy errors | Jeffrey Seyfried | -2/+4 |
| 2016-04-07 | Make `hir::Visibility` non-copyable and add `ty::Visibility` | Jeffrey Seyfried | -2/+2 |
| 2016-04-07 | Improve path resolution diagnostics | Jeffrey Seyfried | -66/+67 |
| 2016-04-06 | Rollup merge of #32724 - sanxiyn:outdated-comment, r=dotdash | Steve Klabnik | -20/+5 |
| 2016-04-06 | rustc: move some maps from ty to hir. | Eduard Burtescu | -4/+4 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -7/+7 |
| 2016-04-06 | rustc: dismantle hir::util, mostly moving functions to methods. | Eduard Burtescu | -2/+1 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -33/+31 |
| 2016-04-05 | Rollup merge of #32403 - vlastachu:super_in_path, r=jseyfried | Manish Goregaokar | -2/+18 |
| 2016-04-05 | Fixes bug which accepting using `super` in use statemet. | vlastachu | -2/+18 |