| Age | Commit message (Expand) | Author | Lines |
| 2018-08-27 | Auto merge of #51456 - qmx:crate-in-path, r=nikomatsakis | bors | -22/+66 |
| 2018-08-27 | Auto merge of #53441 - toidiu:ak-fix53419, r=nikomatsakis | bors | -0/+1 |
| 2018-08-27 | no need to special case std | Douglas Campos | -8/+4 |
| 2018-08-25 | call span_suggestion with applicability | Joseph Post | -21/+41 |
| 2018-08-24 | check that adding infer-outlives requirement to all crates works | Niko Matsakis | -0/+1 |
| 2018-08-24 | Turn the error for module-relative access to macro-expanded `macro_export` ma... | Vadim Petrochenkov | -3/+6 |
| 2018-08-22 | Replace TyForeign with ForeignTy | varkor | -1/+1 |
| 2018-08-22 | Rename Def::{Param, Foreign} to Def::{TyParam, TyForeign} | varkor | -6/+6 |
| 2018-08-22 | Remove Ty prefix from Ty{Bool|Char|Int|Uint|Float|Str} | varkor | -19/+19 |
| 2018-08-22 | Remove Ty prefix from Ty{Foreign|Param} | varkor | -6/+6 |
| 2018-08-22 | Auto merge of #53516 - petrochenkov:derregr, r=estebank | bors | -11/+12 |
| 2018-08-21 | Auto merge of #53471 - petrochenkov:biattr2, r=oli-obk | bors | -27/+48 |
| 2018-08-21 | Auto merge of #53530 - kennytm:rollup, r=kennytm | bors | -1/+1 |
| 2018-08-21 | Rollup merge of #53496 - matthiaskrgr:codespell_08_2018, r=varkor | kennytm | -1/+1 |
| 2018-08-21 | resolve: Unify reporting of ambiguity errors for macro paths | Vadim Petrochenkov | -24/+45 |
| 2018-08-20 | resolve: Refactor away `MacroBinding` | Vadim Petrochenkov | -2/+2 |
| 2018-08-20 | resolve: Consolidate error reporting for resolved macros in `fn resolve_macro... | Vadim Petrochenkov | -1/+1 |
| 2018-08-20 | Auto merge of #51880 - varkor:generics-hir-generalisation-followup, r=eddyb | bors | -24/+27 |
| 2018-08-20 | resolve: Continue search in outer scopes after applying derive resolution fal... | Vadim Petrochenkov | -11/+12 |
| 2018-08-19 | mv codemap source_map | Donato Sciarra | -1/+1 |
| 2018-08-19 | mv codemap() source_map() | Donato Sciarra | -6/+6 |
| 2018-08-19 | mv (mod) codemap source_map | Donato Sciarra | -1/+1 |
| 2018-08-19 | mv CodeMap SourceMap | Donato Sciarra | -2/+2 |
| 2018-08-19 | Fix quadratic loop in confirm.rs | varkor | -1/+1 |
| 2018-08-19 | Replace for_each with for | varkor | -20/+22 |
| 2018-08-19 | Address minor comments | varkor | -4/+5 |
| 2018-08-19 | Fix typos found by codespell. | Matthias Krüger | -1/+1 |
| 2018-08-18 | Auto merge of #52592 - eddyb:or-default, r=Mark-Simulacrum | bors | -3/+3 |
| 2018-08-18 | Auto merge of #53324 - alexreg:self_in_typedefs, r=eddyb | bors | -18/+36 |
| 2018-08-18 | Added page for feature to unstable book. | Alexander Regueiro | -2/+2 |
| 2018-08-18 | Added feature gate. | Alexander Regueiro | -3/+12 |
| 2018-08-18 | Updated diagnostics. | Alexander Regueiro | -1/+1 |
| 2018-08-18 | Resolve `Self` within type definitions. | Alexander Regueiro | -15/+24 |
| 2018-08-18 | Use the new Entry::or_default method where possible. | Eduard-Mihai Burtescu | -3/+3 |
| 2018-08-17 | Auto merge of #50911 - petrochenkov:macuse, r=alexcrichton | bors | -56/+2 |
| 2018-08-17 | Stabilize `use_extern_macros` | Vadim Petrochenkov | -56/+2 |
| 2018-08-17 | rustc_resolve: don't allow paths starting with `::crate`. | Eduard-Mihai Burtescu | -43/+36 |
| 2018-08-17 | special-case std | Douglas Campos | -5/+7 |
| 2018-08-16 | check if we're trying to guess for a local module | Douglas Campos | -1/+2 |
| 2018-08-16 | properly prefix with crate:: modules that are extern but not on the prelude | Douglas Campos | -1/+1 |
| 2018-08-16 | limit to 2018 edition | Douglas Campos | -0/+1 |
| 2018-08-16 | to be OR and not to AND, that's the question | Douglas Campos | -1/+1 |
| 2018-08-16 | avoid looking twice into external prelude crates | Douglas Campos | -1/+8 |
| 2018-08-16 | make tidy happy | Douglas Campos | -1/+1 |
| 2018-08-16 | we can borrow the closure here | Douglas Campos | -2/+2 |
| 2018-08-16 | pass down a Ident | Douglas Campos | -6/+5 |
| 2018-08-16 | look into extern prelude to provide sugestions | Douglas Campos | -3/+23 |
| 2018-08-16 | use name instead of boolean | Douglas Campos | -2/+2 |
| 2018-08-16 | fix formatting | Douglas Campos | -4/+4 |
| 2018-08-16 | extract helper fn | Douglas Campos | -3/+8 |