| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-19 | Remove `eliminate_crate_var` and special pretty-printing for `$crate` | Vadim Petrochenkov | -1/+0 | |
| 2018-12-14 | format: minor stylistic improvements | ljedrz | -12/+6 | |
| 2018-12-14 | format: refactor verify_arg_type | ljedrz | -22/+16 | |
| 2018-12-14 | format: refactor report_invalid_references | ljedrz | -25/+21 | |
| 2018-12-14 | format: remove unreachable condition | ljedrz | -22/+9 | |
| 2018-12-10 | Rollup merge of #56491 - euclio:assert-error, r=estebank | Guillaume Gomez | -0/+8 | |
| emit error with span for empty asserts Fixes #55547. | ||||
| 2018-12-10 | Auto merge of #56369 - nnethercote:rm-Delimited, r=petrochenkov | bors | -7/+5 | |
| Remove `tokenstream::Delimited`. Because it's an extra type layer that doesn't really help; in a couple of places it actively gets in the way, and overall removing it makes the code nicer. It does, however, move `tokenstream::TokenTree` further away from the `TokenTree` in `quote.rs`. More importantly, this change reduces the size of `TokenStream` from 48 bytes to 40 bytes on x86-64, which is enough to slightly reduce instruction counts on numerous benchmarks, the best by 1.5%. Note that `open_tt` and `close_tt` have gone from being methods on `Delimited` to associated methods of `TokenTree`. | ||||
| 2018-12-10 | Remove `tokenstream::Delimited`. | Nicholas Nethercote | -7/+5 | |
| Because it's an extra type layer that doesn't really help; in a couple of places it actively gets in the way, and overall removing it makes the code nicer. It does, however, move `tokenstream::TokenTree` further away from the `TokenTree` in `quote.rs`. More importantly, this change reduces the size of `TokenStream` from 48 bytes to 40 bytes on x86-64, which is enough to slightly reduce instruction counts on numerous benchmarks, the best by 1.5%. Note that `open_tt` and `close_tt` have gone from being methods on `Delimited` to associated methods of `TokenTree`. | ||||
| 2018-12-10 | Upgrade `smallvec` to 0.6.7 and use the new `may_dangle` feature. | Nicholas Nethercote | -1/+1 | |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -13/+13 | |
| 2018-12-07 | Unsupport `#[derive(Trait)]` sugar for `#[derive_Trait]` legacy plugin ↵ | Vadim Petrochenkov | -6/+3 | |
| attributes | ||||
| 2018-12-06 | Rollup merge of #56500 - ljedrz:cleanup_rest_of_const_lifetimes, r=zackmdavis | Pietro Albini | -4/+3 | |
| cleanup: remove static lifetimes from consts A follow-up to https://github.com/rust-lang/rust/pull/56497. | ||||
| 2018-12-06 | Rollup merge of #56426 - petrochenkov:syntweak, r=nikomatsakis | Pietro Albini | -2/+2 | |
| libsyntax_pos: A few tweaks | ||||
| 2018-12-04 | adds DocTest filename variant, refactors doctest_offset out of source_map, ↵ | Matthew Russo | -1/+1 | |
| fixes remaining test failures | ||||
| 2018-12-04 | emit error with span for empty asserts | Andy Russell | -0/+8 | |
| Fixes #55547. | ||||
| 2018-12-04 | cleanup: remove static lifetimes from consts | ljedrz | -4/+3 | |
| 2018-12-04 | syntax: Rename some keywords | Vadim Petrochenkov | -2/+2 | |
| `CrateRoot` -> `PathRoot`, `::` doesn't necessarily mean crate root now `SelfValue` -> `SelfLower`, `SelfType` -> `SelfUpper`, both `self` and `Self` can be used in type and value namespaces now | ||||
| 2018-12-03 | Rollup merge of #56438 - yui-knk:remove_not_used_DotEq_token, r=petrochenkov | kennytm | -1/+0 | |
| 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-02 | Remove not used `DotEq` token | yui-knk | -1/+0 | |
| 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-01 | remove some uses of try! | Mark Mansi | -1/+1 | |
| 2018-12-01 | Introduce proc_macro::Span::source_text | Olivier Goffart | -0/+3 | |
| 2018-11-30 | proc_macro: move to a dependency of libtest. | Eduard-Mihai Burtescu | -1/+0 | |
| 2018-11-30 | proc_macro: move the rustc server to syntax_ext. | Eduard-Mihai Burtescu | -3/+758 | |
| 2018-11-30 | proc_macro: remove the __internal module. | Eduard-Mihai Burtescu | -19/+9 | |
| 2018-11-30 | proc_macro: introduce a "bridge" between clients (proc macros) and servers ↵ | Eduard-Mihai Burtescu | -129/+124 | |
| (compiler front-ends). | ||||
| 2018-11-18 | Rollup merge of #55923 - Zeegomo:master, r=estebank | Pietro Albini | -1/+1 | |
| reword #[test] attribute error on fn items fix of [#55787](https://github.com/rust-lang/rust/issues/55787) Reworded error message from "#[test] attribute is only allowed on fn items" to "#[test] attribute is only allowed on non associated functions" | ||||
| 2018-11-18 | Rollup merge of #55827 - ljedrz:various_stashed, r=alexcrichton | Pietro Albini | -10/+8 | |
| A few tweaks to iterations/collecting - simplify and speed up `dot::GraphWalk::nodes` for `cfg::CFG` - `reserve` the capacity for `edges` in `DepGraph::query` - collect directly to a `HirVec` in `LoweringContext::lower_attrs` - fix overallocation in `OnDiskCache::serialize` - preallocate the `new_partitioning` vector in `merge_codegen_units` - simplify `impl FromHex for str` - improve the creation of `self_arg_names` in `impl MethodDef` | ||||
| 2018-11-13 | fix various typos in doc comments | Andy Russell | -1/+1 | |
| 2018-11-13 | A few tweaks to iterations/collecting | ljedrz | -10/+8 | |
| 2018-11-11 | reword #[test] attribute error on fn items | giacomo | -1/+1 | |
| 2018-10-31 | syntax: improve a few allocations | ljedrz | -1/+1 | |
| 2018-10-26 | Auto merge of #54929 - csmoe:cfg_lint, r=petrochenkov | bors | -5/+5 | |
| Suggest to remove prefix `b` in cfg attribute lint string Closes #54926 r? @estebank | ||||
| 2018-10-26 | Remove redundant clone | Shotaro Yamada | -2/+2 | |
| 2018-10-20 | handle errors based on parse_sess | csmoe | -5/+5 | |
| 2018-10-05 | expansion: Remove restriction on use of macro attributes with test/bench | Vadim Petrochenkov | -7/+1 | |
| The restrictions were introduced in https://github.com/rust-lang/rust/pull/54277 and no longer necessary now because legacy plugins are now expanded in usual left-to-right order | ||||
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -1/+1 | |
| 2018-09-20 | Auto merge of #54241 - vi:suggest_with_applicability, r=estebank | bors | -1/+2 | |
| Remove usages of span_suggestion without Applicability Use `Applicability::Unspecified` for all of them instead. Shall deprecations for the non-`_with_applicability` functions be added? Shall clippy be addressed somehow? r? @estebank | ||||
| 2018-09-17 | Whitespace fix again. | Vitaly _Vi Shukela | -3/+3 | |
| 2018-09-17 | Fill in suggestions Applicability according to @estebank | Vitaly _Vi Shukela | -3/+3 | |
| Also fix some formatting along the way. | ||||
| 2018-09-16 | Attach Applicability to multipart_suggestion and span_suggestions | Vitaly _Vi Shukela | -1/+2 | |
| 2018-09-16 | Temporarily prohibit proc macro attributes placed after derives | Vadim Petrochenkov | -1/+7 | |
| ... and also proc macro attributes used together with test/bench. | ||||
| 2018-09-11 | stabalize infer outlives requirements (RFC 2093). | toidiu | -1/+0 | |
| Co-authored-by: nikomatsakis | ||||
| 2018-09-10 | resolve: Remove `unshadowable_attrs` | Vadim Petrochenkov | -12/+2 | |
| 2018-09-04 | Move #[test_case] to a syntax extension | John Renner | -2/+85 | |
| 2018-09-04 | Fix #[test] shadowing in macro_prelude | John Renner | -2/+12 | |
| 2018-09-04 | Introduce Custom Test Frameworks | John Renner | -2/+337 | |
| 2018-08-28 | Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. | Eduard-Mihai Burtescu | -8/+8 | |
| 2018-08-24 | check that adding infer-outlives requirement to all crates works | Niko Matsakis | -0/+1 | |
| 2018-08-23 | Use optimized SmallVec implementation | Igor Gutorov | -5/+6 | |
| 2018-08-22 | Rollup merge of #53504 - ekse:suggestions-applicability-2, r=estebank | Guillaume Gomez | -1/+3 | |
| Set applicability for more suggestions. Converts a couple more calls to `span_suggestion_with_applicability` (#50723). To be on the safe side, I marked suggestions that depend on the intent of the user or that are potentially lossy conversions as MaybeIncorrect. r? @estebank | ||||
