| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -3/+3 | |
| 2019-02-07 | Add lowering errors for const generics | varkor | -0/+2 | |
| Co-Authored-By: Gabriel Smith <yodaldevoid@users.noreply.github.com> | ||||
| 2019-02-07 | libsyntax => 2018 | Taiki Endo | -3/+4 | |
| 2019-01-14 | Remove `ThinTokenStream`. | Nicholas Nethercote | -1/+1 | |
| `TokenStream` is now almost identical to `ThinTokenStream`. This commit removes the latter, replacing it with the former. | ||||
| 2018-12-27 | AST/HIR: Introduce `ExprKind::Err` for better error recovery in the front-end | Vadim Petrochenkov | -0/+1 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-12-10 | Remove `tokenstream::Delimited`. | Nicholas Nethercote | -1/+1 | |
| 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-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -2/+2 | |
| 2018-09-01 | Auto merge of #53815 - F001:if-let-guard, r=petrochenkov | bors | -1/+5 | |
| refactor match guard This is the first step to implement RFC 2294: if-let-guard. Tracking issue: https://github.com/rust-lang/rust/issues/51114 The second step should be introducing another variant `IfLet` in the Guard enum. I separated them into 2 PRs for the convenience of reviewers. r? @petrochenkov | ||||
| 2018-08-30 | introduce Guard enum | F001 | -1/+5 | |
| 2018-08-19 | Rename `Catch` variants to `TryBlock` | Scott McMurray | -1/+1 | |
| (Not `Try` since `QuestionMark` is using that.) | ||||
| 2018-07-18 | Implement existential types | Oliver Schneider | -0/+7 | |
| 2018-07-14 | Remove most of `PartialEq` impls from AST and HIR structures | Vadim Petrochenkov | -1/+1 | |
| 2018-06-27 | Generate the `NodeId` for `existential type` in the AST | Oliver Schneider | -1/+1 | |
| 2018-06-21 | async await desugaring and tests | Taylor Cramer | -2/+5 | |
| 2018-06-21 | Parse async fn header. | Without Boats | -7/+5 | |
| This is gated on edition 2018 & the `async_await` feature gate. The parser will accept `async fn` and `async unsafe fn` as fn items. Along the same lines as `const fn`, only `async unsafe fn` is permitted, not `unsafe async fn`.The parser will not accept `async` functions as trait methods. To do a little code clean up, four fields of the function type struct have been merged into the new `FnHeader` struct: constness, asyncness, unsafety, and ABI. Also, a small bug in HIR printing is fixed: it previously printed `const unsafe fn` as `unsafe const fn`, which is grammatically incorrect. | ||||
| 2018-06-20 | Fix additional comments | varkor | -1/+1 | |
| 2018-06-20 | Make GenericBound explicit | varkor | -6/+2 | |
| 2018-06-20 | Rename ParamBound(s) to GenericBound(s) | varkor | -2/+2 | |
| 2018-06-20 | Rename TraitTyParamBound to ParamBound::Trait | varkor | -1/+1 | |
| 2018-06-20 | Take advantage of the lifetime refactoring | varkor | -8/+3 | |
| 2018-06-20 | Use ParamBounds in WhereRegionPredicate | varkor | -9/+9 | |
| 2018-06-20 | Lift bounds into GenericParam | varkor | -6/+5 | |
| 2018-06-20 | Simply joint lifetime/type iteration | varkor | -1/+1 | |
| 2018-06-20 | Refactor counting methods | varkor | -2/+2 | |
| 2018-06-20 | Rename structures in ast | varkor | -7/+7 | |
| 2018-06-20 | Refactor ast::GenericParam as a struct | varkor | -9/+9 | |
| 2018-06-20 | Refactor hir::GenericParam as a struct | varkor | -1/+3 | |
| 2018-06-20 | Rename ast::GenericParam and ast::GenericArg | varkor | -7/+7 | |
| It's so confusing to have everything having the same name, at least while refactoring. | ||||
| 2018-06-20 | Make method and variable names more consistent | varkor | -3/+3 | |
| 2018-06-20 | Rename "parameter" to "arg" | varkor | -6/+6 | |
| 2018-06-20 | Rename PathParameter(s) to GenericArg(s) | varkor | -11/+16 | |
| 2018-06-20 | Consolidate PathParameters and AngleBracketedParameterData | varkor | -2/+2 | |
| 2018-06-14 | create multiple HIR items for a use statement | QuietMisdreavus | -1/+2 | |
| 2018-05-30 | rustc: don't visit lifetime parameters through visit_lifetime. | Eduard-Mihai Burtescu | -2/+2 | |
| 2018-05-24 | restore emplacement syntax (obsolete) | Niko Matsakis | -0/+4 | |
| 2018-05-19 | rustc: introduce {ast,hir}::AnonConst to consolidate so-called "embedded ↵ | Eduard-Mihai Burtescu | -5/+10 | |
| constants". | ||||
| 2018-05-16 | label-break-value: Parsing and AST/HIR changes | est31 | -1/+4 | |
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -1/+1 | |
| 2018-04-12 | AST/HIR: Merge field access expressions for named and numeric fields | Vadim Petrochenkov | -3/+0 | |
| 2018-04-06 | Remove more duplicated spans | Vadim Petrochenkov | -20/+20 | |
| 2018-04-06 | Rename `ast::Variant_::name` into `ident` + Fix rebase | Vadim Petrochenkov | -2/+2 | |
| 2018-04-06 | Get rid of `SpannedIdent` | Vadim Petrochenkov | -5/+5 | |
| 2018-04-06 | Rename `PathSegment::identifier` to `ident` | Vadim Petrochenkov | -1/+1 | |
| 2018-04-05 | Rollup merge of #49350 - abonander:macros-in-extern, r=petrochenkov | Alex Crichton | -0/+1 | |
| Expand macros in `extern {}` blocks This permits macro and proc-macro and attribute invocations (the latter only with the `proc_macro` feature of course) in `extern {}` blocks, gated behind a new `macros_in_extern` feature. A tracking issue is now open at #49476 closes #48747 | ||||
| 2018-04-03 | expand macro invocations in `extern {}` blocks | Austin Bonander | -0/+1 | |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -4/+0 | |
| Closes #22181, #27779 | ||||
| 2018-03-17 | AST: Make renames in imports closer to the source | Vadim Petrochenkov | -3/+4 | |
| Fix `unused_import_braces` lint false positive on `use prefix::{self as rename}` | ||||
| 2018-03-17 | AST/HIR: Clarify what the optional name in extern crate items mean | Vadim Petrochenkov | -3/+3 | |
| 2018-03-01 | Support parentheses in patterns under feature gate | Vadim Petrochenkov | -1/+2 | |
| Improve recovery for trailing comma after `..` | ||||
