| Age | Commit message (Expand) | Author | Lines |
| 2019-08-22 | Move promoted out of mir::Body | Wesley Wiser | -12/+33 |
| 2019-08-21 | review comments: reword and add test | Esteban Küber | -2/+2 |
| 2019-08-21 | Do not complain about unused code when used in `impl` `Self` type | Esteban Küber | -6/+20 |
| 2019-08-21 | review comments | Esteban Küber | -7/+13 |
| 2019-08-21 | When declaring a declarative macro in an item it's only accessible inside it | Esteban Küber | -5/+8 |
| 2019-08-21 | Add clarification on E0308 about opaque types | Esteban Küber | -0/+1 |
| 2019-08-21 | Fix typo in E0308 if/else label | Esteban Küber | -6/+17 |
| 2019-08-21 | Add terminal_width debugging flag | Esteban Küber | -2/+6 |
| 2019-08-21 | Rollup merge of #63766 - oli-obk:const_eval_dedup, r=zackmdavis | Mazdak Farrokhzad | -28/+20 |
| 2019-08-21 | Expose encapsulated undef mask as immutable | Andreas Molzer | -0/+5 |
| 2019-08-21 | Replace usage of alloc.bytes in interpret | Andreas Molzer | -0/+2 |
| 2019-08-21 | Remove some duplication when resolving constants | Oliver Scherer | -28/+20 |
| 2019-08-20 | Stabilize 'async_await'. | Mazdak Farrokhzad | -2/+0 |
| 2019-08-19 | Rollup merge of #63620 - estebank:assoc-type-span, r=Centril | Mazdak Farrokhzad | -23/+28 |
| 2019-08-19 | review comments | Esteban Küber | -13/+14 |
| 2019-08-19 | Use constraint span when lowering associated types | Esteban Küber | -12/+16 |
| 2019-08-19 | use static as object-lifetime default for type XX in `Foo<Item=XX>` | Niko Matsakis | -1/+70 |
| 2019-08-19 | distinguish object-lifetime-default elision from other elision | Niko Matsakis | -3/+55 |
| 2019-08-19 | add debug logs | Niko Matsakis | -2/+46 |
| 2019-08-19 | Auto merge of #63670 - Dante-Broggi:patch-2, r=Centril | bors | -1/+1 |
| 2019-08-19 | Auto merge of #63463 - matthewjasper:ty_param_cleanup, r=petrochenkov | bors | -133/+89 |
| 2019-08-18 | Pre intern the `Self` parameter type | Matthew Jasper | -38/+26 |
| 2019-08-18 | Auto merge of #63269 - Aaron1011:feature/proc-macro-data, r=eddyb,petrochenkov | bors | -45/+0 |
| 2019-08-18 | Auto merge of #61708 - dlrobertson:or-patterns-0, r=centril | bors | -0/+23 |
| 2019-08-17 | Rollup merge of #63669 - Dante-Broggi:patch-1, r=jonas-schievink | Mazdak Farrokhzad | -1/+1 |
| 2019-08-17 | size has a zero | Dante-Broggi | -1/+1 |
| 2019-08-17 | fix typos | Dante-Broggi | -1/+1 |
| 2019-08-17 | Move copy of undef_mask into allocation | Andreas Molzer | -0/+85 |
| 2019-08-17 | Derive HashStable for Allocation | Andreas Molzer | -19/+20 |
| 2019-08-17 | resolve: Properly integrate derives and `macro_rules` scopes | Vadim Petrochenkov | -1/+1 |
| 2019-08-17 | Serialize additional data for procedural macros | Aaron Hill | -45/+0 |
| 2019-08-17 | Store allocation size, make bytes, undef_mask private | Andreas Molzer | -11/+42 |
| 2019-08-17 | initial implementation of or-pattern parsing | Dan Robertson | -4/+4 |
| 2019-08-17 | Initial implementation of or patterns | varkor | -1/+24 |
| 2019-08-17 | Auto merge of #63462 - matthewjasper:hygienic-builtin-derives, r=petrochenkov | bors | -10/+1 |
| 2019-08-17 | Rollup merge of #63505 - jgalenson:sysroot-hash, r=alexcrichton | Mazdak Farrokhzad | -1/+1 |
| 2019-08-17 | Remove SyntaxContext from {ast, hir}::{GlobalAsm, InlineAsm} | Matthew Jasper | -10/+1 |
| 2019-08-16 | Rollup merge of #63632 - vext01:vext01-comment-fixes, r=eddyb | Mazdak Farrokhzad | -2/+1 |
| 2019-08-16 | Remove redundant `ty` fields from `mir::Constant` and `hair::pattern::Pattern... | Eduard-Mihai Burtescu | -7/+2 |
| 2019-08-16 | CrateStore comment fix. | Edd Barrett | -2/+1 |
| 2019-08-15 | hygiene: `ExpnInfo` -> `ExpnData` | Vadim Petrochenkov | -51/+51 |
| 2019-08-15 | hygiene: Merge a tiny bit of the "share expansion definition data" PR | Vadim Petrochenkov | -1/+0 |
| 2019-08-15 | hygiene: Merge `ExpnInfo` and `InternalExpnData` | Vadim Petrochenkov | -4/+5 |
| 2019-08-15 | hygiene: Remove `Option`s from functions returning `ExpnInfo` | Vadim Petrochenkov | -50/+28 |
| 2019-08-15 | `Ident::with_empty_ctxt` -> `Ident::with_dummy_span` | Vadim Petrochenkov | -16/+16 |
| 2019-08-15 | syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()` | Vadim Petrochenkov | -3/+3 |
| 2019-08-15 | syntax_pos: Introduce a helper for checking whether a span comes from expansion | Vadim Petrochenkov | -1/+1 |
| 2019-08-15 | Rollup merge of #63586 - petrochenkov:nospanned, r=eddyb | Mazdak Farrokhzad | -38/+29 |
| 2019-08-15 | Rollup merge of #63582 - JohnTitor:fix-ice-63226, r=oli-obk | Mazdak Farrokhzad | -0/+8 |
| 2019-08-15 | Remove `Spanned` from `{ast,hir}::FieldPat` | Vadim Petrochenkov | -37/+28 |