| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-01-10 | Stabilize `uniform_paths` | Vadim Petrochenkov | -4/+3 | |
| 2018-12-03 | Rollup merge of #56438 - yui-knk:remove_not_used_DotEq_token, r=petrochenkov | kennytm | -6/+1 | |
| Remove not used `DotEq` token Currently libproc_macro does not use `DotEq` token. https://github.com/rust-lang/rust/pull/49545 changed libproc_macro to not generate `DotEq` token. | ||||
| 2018-12-03 | Rollup merge of #56433 - yui-knk:update_comment_of_parse_visibility, ↵ | kennytm | -3/+4 | |
| r=petrochenkov Add description about `crate` for parse_visibility's comment This rule was introduced by https://github.com/rust-lang/rust/pull/45401. | ||||
| 2018-12-03 | Rollup merge of #56419 - mark-i-m:remove-try, r=Centril | kennytm | -5/+3 | |
| Remove some uses of try! | ||||
| 2018-12-03 | Rollup merge of #56412 - petrochenkov:extself, r=Centril | kennytm | -1/+1 | |
| Update tracking issue for `extern_crate_self` | ||||
| 2018-12-03 | Rollup merge of #56366 - alexreg:stabilise-self_in_typedefs, r=Centril | kennytm | -6/+5 | |
| Stabilize self_in_typedefs feature [**Tracking Issue**](https://github.com/rust-lang/rust/issues/49303) r? @centril | ||||
| 2018-12-02 | Remove not used `DotEq` token | yui-knk | -6/+1 | |
| Currently libproc_macro does not use `DotEq` token. https://github.com/rust-lang/rust/pull/49545 changed libproc_macro to not generate `DotEq` token. | ||||
| 2018-12-02 | Fix "line longer than 100 chars" | yui-knk | -3/+4 | |
| 2018-12-02 | Add description about `crate` for parse_visibility's comment | yui-knk | -1/+1 | |
| This rule was introduced by https://github.com/rust-lang/rust/pull/45401. | ||||
| 2018-12-01 | remove some uses of try! | Mark Mansi | -5/+3 | |
| 2018-12-01 | Update tracking issue for `extern_crate_self` | Vadim Petrochenkov | -1/+1 | |
| 2018-12-01 | resolve: Support aliasing local crate root in extern prelude | Vadim Petrochenkov | -1/+8 | |
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -6/+5 | |
| 2018-12-01 | Rollup merge of #56365 - alexreg:stabilise-self_struct_ctor, r=Centril | kennytm | -4/+3 | |
| Stabilize self_struct_ctor feature. [**Tracking Issue**](https://github.com/rust-lang/rust/issues/51994) | ||||
| 2018-12-01 | Rollup merge of #56336 - nnethercote:clean-up-pp, r=nikomatsakis | kennytm | -201/+216 | |
| Clean up and streamline the pretty-printer Some minor improvements. | ||||
| 2018-12-01 | Rollup merge of #56268 - nnethercote:fold_opt_expr-recycle, r=petrochenkov | kennytm | -39/+73 | |
| Reuse the `P` in `InvocationCollector::fold_{,opt_}expr`. This requires adding a new method, `P::filter_map`. This commit reduces instruction counts for various benchmarks by up to 0.7%. | ||||
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -4/+3 | |
| 2018-11-30 | proc_macro: introduce a "bridge" between clients (proc macros) and servers ↵ | Eduard-Mihai Burtescu | -2/+2 | |
| (compiler front-ends). | ||||
| 2018-11-29 | Rollup merge of #56330 - estebank:cleanup-span, r=zackmdavis | Guillaume Gomez | -2/+2 | |
| Clean up span in non-trailing `..` suggestion | ||||
| 2018-11-29 | Rollup merge of #56257 - mark-i-m:rustc-guide-links, r=nikomatsakis | Guillaume Gomez | -2/+2 | |
| rustc-guide has moved to rust-lang/ r? @nikomatsakis | ||||
| 2018-11-29 | Rollup merge of #56255 - jasonl:update-old-documents, r=michaelwoerister | Guillaume Gomez | -3/+2 | |
| Update outdated code comments in StringReader For the detection of newlines in the lexer, this is now done in `analyze_source_file.rs`. | ||||
| 2018-11-29 | Rollup merge of #56220 - estebank:suggest-lifetime-move, r=nikomatsakis | Guillaume Gomez | -8/+45 | |
| Suggest appropriate place for lifetime when declared after type arguments | ||||
| 2018-11-29 | Split up `pretty_print` and `print`. | Nicholas Nethercote | -150/+152 | |
| `pretty_print` takes a `Token` and `match`es on it. But the particular `Token` kind is known at each call site, so this commit splits it into five functions: `pretty_print_eof`, `pretty_print_begin`, etc. This commit also does likewise with `print`, though there is one callsite for `print` where the `Token` kind isn't known, so a generic `print` has to stay (but it now just calls out to the various `print_*` functions). | ||||
| 2018-11-29 | Use `Cow` in `Token::String`. | Nicholas Nethercote | -57/+63 | |
| `Printer::word` takes a `&str` and converts it into a `String`, which causes an allocation. But that allocation is rarely necessary, because `&str` is almost always a `&'static str` or a `String` that won't be used again. This commit changes `Token::String` so it holds a `Cow<'static, str>` instead of a `String`, which avoids a lot of allocations. | ||||
| 2018-11-29 | Remove `huge_word` and `zero_word`. | Nicholas Nethercote | -9/+16 | |
| They are unused. The commit also adds some blank lines between some methods. | ||||
| 2018-11-29 | Fix whitespace in `pp.rs`. | Nicholas Nethercote | -126/+126 | |
| This commit converts some 2-space indents to 4-space indents. | ||||
| 2018-11-28 | Clean up span in non-trailing `..` suggestion | Esteban Küber | -2/+2 | |
| 2018-11-27 | remove uses of feature gate | Mark Mansi | -1/+0 | |
| 2018-11-27 | remove some unused vars | Mark Mansi | -6/+6 | |
| 2018-11-27 | remove feature gate | Mark Mansi | -42/+7 | |
| 2018-11-27 | move feature gate to accepted | Mark Mansi | -3/+2 | |
| 2018-11-27 | Auto merge of #55402 - estebank:macro-eof-2, r=nikomatsakis | bors | -14/+54 | |
| Point at end of macro arm when encountering EOF Fix #52866. | ||||
| 2018-11-26 | Specify suggestion applicability | Esteban Küber | -1/+2 | |
| 2018-11-27 | resolve: Implement edition hygiene for imports and absolute paths | Vadim Petrochenkov | -16/+13 | |
| Use per-span hygiene in a few other places in resolve Prefer `rust_2015`/`rust_2018` helpers to comparing editions | ||||
| 2018-11-26 | rustc-guide has moved | Mark Mansi | -2/+2 | |
| 2018-11-26 | Update outdated code comments in StringReader | Jason Langenauer | -3/+2 | |
| 2018-11-26 | Emit one diagnostic for multiple misplaced lifetimes | Esteban Küber | -12/+19 | |
| 2018-11-25 | Move lifetimes before the *first* type argument | Esteban Küber | -1/+3 | |
| 2018-11-25 | Suggest appropriate place for lifetime when declared after type arguments | Esteban Küber | -8/+35 | |
| 2018-11-25 | Rollup merge of #56072 - da-x:stabilize-literal-matcher, r=petrochenkov | Pietro Albini | -24/+15 | |
| Stabilize macro_literal_matcher This followed FCP in #35625. Closes #35625 | ||||
| 2018-11-23 | Reword EOF in macro arm message | Esteban Küber | -1/+4 | |
| 2018-11-23 | Keep label on moved spans and point at macro invocation on parse error | Esteban Küber | -8/+12 | |
| 2018-11-23 | Point at macro arm when it doesn't expand to an expression | Esteban Küber | -3/+7 | |
| 2018-11-23 | Reword incorrect macro invocation primary label | Esteban Küber | -8/+20 | |
| 2018-11-23 | Add label when replacing primary DUMMY_SP in macro expansion | Esteban Küber | -0/+1 | |
| 2018-11-23 | Point at end of macro arm when encountering EOF | Esteban Küber | -2/+18 | |
| Fix #52866 | ||||
| 2018-11-22 | Rollup merge of #56002 - Axary:master, r=estebank | Guillaume Gomez | -2/+13 | |
| fix #55972: Erroneous self arguments on bare functions emit subpar compilation error #55972 r? @estebank | ||||
| 2018-11-21 | macro_literal_matcher: fixes per petrochenkov's review | Dan Aloni | -3/+3 | |
| 2018-11-21 | Stabilize macro_literal_matcher | Dan Aloni | -24/+15 | |
| 2018-11-21 | Stabilize `extern_crate_item_prelude` | Vadim Petrochenkov | -3/+2 | |
