| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-08-27 | Improve 'mut ' diagnostic. | Mazdak Farrokhzad | -20/+34 | |
| 2019-08-27 | Ensure 'let mut ;' where ':pat' is banned. | Mazdak Farrokhzad | -0/+9 | |
| 2019-08-27 | recover on 'mut ' and improve recovery for keywords. | Mazdak Farrokhzad | -31/+105 | |
| 2019-08-27 | Simplify with Symbol/Token::is_book_lit. | Mazdak Farrokhzad | -7/+10 | |
| 2019-08-27 | token: refactor with is_non_raw_ident_where. | Mazdak Farrokhzad | -19/+13 | |
| 2019-08-26 | parser: fix span for leading vert. | Mazdak Farrokhzad | -1/+2 | |
| 2019-08-25 | parser: TopLevel -> RecoverComma. | Mazdak Farrokhzad | -10/+10 | |
| 2019-08-25 | parser: gracefully handle `fn foo(A | B: type)`. | Mazdak Farrokhzad | -11/+41 | |
| 2019-08-25 | parser: 'while parsing this or-pattern...' | Mazdak Farrokhzad | -1/+4 | |
| 2019-08-25 | parser: simplify parse_pat_with_or_{inner} | Mazdak Farrokhzad | -17/+10 | |
| 2019-08-24 | parser: reword || recovery. | Mazdak Farrokhzad | -1/+1 | |
| 2019-08-24 | parser: extract recover_inner_leading_vert. | Mazdak Farrokhzad | -4/+7 | |
| 2019-08-24 | parse_top_pat: silence leading vert gating sometimes. | Mazdak Farrokhzad | -3/+15 | |
| 2019-08-24 | parser: bool -> TopLevel. | Mazdak Farrokhzad | -5/+9 | |
| 2019-08-24 | parser: bool -> GateOr. | Mazdak Farrokhzad | -10/+16 | |
| 2019-08-24 | parser: better recovery for || in inner pats. | Mazdak Farrokhzad | -4/+23 | |
| 2019-08-24 | parser: drive-by: simplify `parse_arg_general`. | Mazdak Farrokhzad | -6/+3 | |
| 2019-08-24 | parser: `let` stmts & `for` exprs: allow or-patterns. | Mazdak Farrokhzad | -8/+2 | |
| 2019-08-24 | parser: document `parse_pat`. | Mazdak Farrokhzad | -0/+4 | |
| 2019-08-24 | parser: `parse_pats` -> `parse_top_pat{_unpack}`. | Mazdak Farrokhzad | -16/+24 | |
| 2019-08-24 | parser: document `ban_unexpected_or_or`. | Mazdak Farrokhzad | -0/+1 | |
| 2019-08-24 | parser: move `maybe_recover_unexpected_comma` to a more appropriate place. | Mazdak Farrokhzad | -50/+49 | |
| 2019-08-24 | parser: use `eat_or_separator` for leading vert. | Mazdak Farrokhzad | -2/+2 | |
| 2019-08-24 | parser: improve `parse_pat_with_or` docs. | Mazdak Farrokhzad | -1/+2 | |
| 2019-08-24 | parser: extract `eat_or_separator`. | Mazdak Farrokhzad | -30/+28 | |
| 2019-08-24 | parser: integrate `maybe_recover_unexpected_comma` in `parse_pat_with_or`. | Mazdak Farrokhzad | -9/+17 | |
| 2019-08-24 | parser: extract `maybe_recover_unexpected_comma`. | Mazdak Farrokhzad | -31/+36 | |
| 2019-08-24 | parser: simplify `parse_pat_with_or`. | Mazdak Farrokhzad | -1/+1 | |
| 2019-08-24 | parser: improve or-patterns recovery. | Mazdak Farrokhzad | -4/+11 | |
| 2019-08-24 | parser: refactor `parse_pat_with_or` + use it in [p0, p1, ..] pats. | Mazdak Farrokhzad | -8/+15 | |
| 2019-08-24 | parser: type alias `type Expected = Option<&'static str>;`. | Mazdak Farrokhzad | -8/+7 | |
| 2019-08-24 | parser: extract `ban_unexpected_or_or`. | Mazdak Farrokhzad | -11/+13 | |
| 2019-08-21 | Rollup merge of #63759 - Centril:parse-default-async-fn, r=petrochenkov | Mazdak Farrokhzad | -0/+1 | |
| Allow 'default async fn' to parse. - Parse default async fn. Fixes #63716. (`cherry-pick`ed from 3rd commit in https://github.com/rust-lang/rust/pull/63749.) r? @petrochenkov | ||||
| 2019-08-20 | Allow 'default async fn' to parse. | Mazdak Farrokhzad | -0/+1 | |
| 2019-08-20 | Use dedicated type for spans in pre-expansion gating. | Mazdak Farrokhzad | -22/+25 | |
| 2019-08-19 | glue tokens when building token stream | Aleksey Kladov | -9/+33 | |
| 2019-08-19 | remove composite tokens support from the lexer | Aleksey Kladov | -37/+20 | |
| 2019-08-18 | Auto merge of #62948 - matklad:failable-file-loading, r=petrochenkov | bors | -66/+15 | |
| Normalize newlines when loading files Fixes #62865 | ||||
| 2019-08-17 | initial implementation of or-pattern parsing | Dan Robertson | -4/+40 | |
| Initial implementation of parsing or-patterns e.g., `Some(Foo | Bar)`. This is a partial implementation of RFC 2535. | ||||
| 2019-08-16 | Feature gate 'yield ?' pre-expansion. | Mazdak Farrokhzad | -0/+6 | |
| 2019-08-15 | hygiene: `ExpnInfo` -> `ExpnData` | Vadim Petrochenkov | -1/+1 | |
| For naming consistency with everything else in this area | ||||
| 2019-08-15 | syntax_pos: Remove the duplicate global edition | Vadim Petrochenkov | -29/+6 | |
| It was introduced to avoid going through `hygiene_data`, but now it's read only once, when `ParseSess` is created, so going through a lock is ok. | ||||
| 2019-08-15 | hygiene: Remove `Option`s from functions returning `ExpnInfo` | Vadim Petrochenkov | -1/+0 | |
| The expansion info is not optional and should always exist | ||||
| 2019-08-15 | `Ident::with_empty_ctxt` -> `Ident::with_dummy_span` | Vadim Petrochenkov | -1/+1 | |
| `Ident` has had a full span rather than just a `SyntaxContext` for a long time now. | ||||
| 2019-08-15 | syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()` | Vadim Petrochenkov | -11/+10 | |
| For consistency with `ExpnId::root`. Also introduce a helper `Span::with_root_ctxt` for creating spans with `SyntaxContext::root()` context | ||||
| 2019-08-15 | syntax_pos: Introduce a helper for checking whether a span comes from expansion | Vadim Petrochenkov | -1/+1 | |
| 2019-08-15 | Remove `Spanned` from `{ast,hir}::FieldPat` | Vadim Petrochenkov | -14/+8 | |
| 2019-08-15 | Remove `Spanned` from `ast::Mac` | Vadim Petrochenkov | -20/+26 | |
| 2019-08-15 | Remove `Spanned` from `mk_name_value_item_str` and `expr_to_spanned_string` | Vadim Petrochenkov | -2/+2 | |
| 2019-08-14 | Rollup merge of #63543 - c410-f3r:variant, r=c410-f3r | Mazdak Farrokhzad | -8/+8 | |
| Merge Variant and Variant_ Extracted from #63468. | ||||
