| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-27 | Rollup merge of #59421 - estebank:tuple-index-suffix, r=petrochenkov | Josh Stone | -24/+68 | |
| Reject integer suffix when tuple indexing Fix #59418. r? @varkor | ||||
| 2019-03-27 | Better diagnostic for binary operation on BoxedValues | hgallagher1993 | -2/+4 | |
| 2019-03-26 | Add specific message for tuple struct invoked with suffixed numeric field name | Esteban Küber | -1/+19 | |
| 2019-03-26 | Reword invalid suffixe errors | Esteban Küber | -30/+30 | |
| 2019-03-26 | Use `expect_no_suffix` for error | Esteban Küber | -7/+6 | |
| 2019-03-26 | Rollup merge of #59150 - estebank:type-ascription, r=varkor | Mazdak Farrokhzad | -0/+32 | |
| Expand suggestions for type ascription parse errors Fix #51222. CC #48016, #47666, #54516, #34255. | ||||
| 2019-03-25 | review comments | Esteban Küber | -3/+13 | |
| 2019-03-25 | Reject integer suffix when tuple indexing | Esteban Küber | -0/+17 | |
| 2019-03-25 | compiletest: make path normalization smarter | Andy Russell | -71/+71 | |
| 2019-03-23 | Tweak unsupported negative trait bounds message | Esteban Küber | -29/+38 | |
| 2019-03-22 | Reword type ascription note to reduce verbosity | Esteban Küber | -24/+4 | |
| 2019-03-22 | Review comment | Esteban Küber | -4/+4 | |
| 2019-03-22 | Expand suggestions for type ascription parse errors | Esteban Küber | -0/+52 | |
| 2019-03-22 | Rollup merge of #59322 - estebank:diag-tweak, r=davidtwco | Mazdak Farrokhzad | -49/+23 | |
| Tweak incorrect escaped char diagnostic | ||||
| 2019-03-22 | Rollup merge of #59266 - estebank:struct-parse-recovery, r=petrochenkov | Mazdak Farrokhzad | -0/+21 | |
| Do not complain about non-existing fields after parse recovery When failing to parse struct-like enum variants, the ADT gets recorded as having no fields. Record that we have actually recovered during parsing of this variant to avoid complaing about non-existing fields when actually using it. Fix #57361. | ||||
| 2019-03-20 | Tweak incorrect escaped char diagnostic | Esteban Küber | -49/+23 | |
| 2019-03-17 | Do not complain about non-existing fields after parse recovery | Esteban Küber | -0/+21 | |
| When failing to parse struct-like enum variants, the ADT gets recorded as having no fields. Record that we have actually recovered during parsing of this variant to avoid complaing about non-existing fields when actually using it. | ||||
| 2019-03-16 | Recover from incorrect `pub` kw in "reasonable" places | Esteban Küber | -15/+9 | |
| 2019-03-16 | Recover from missing comma between enum variants | Esteban Küber | -8/+22 | |
| 2019-03-16 | syntax: Introduce `Ident::can_be_raw` | Vadim Petrochenkov | -12/+14 | |
| 2019-03-14 | Do not complain about unmentioned fields in recovered patterns | Esteban Küber | -18/+2 | |
| When the parser has to recover from malformed code in a pattern, do not complain about missing fields. | ||||
| 2019-03-13 | add suggestions to invalid macro item error | Andy Russell | -2/+50 | |
| 2019-03-13 | tidy test | Saleem Jaffer | -1/+1 | |
| 2019-03-13 | adding test | Saleem Jaffer | -0/+17 | |
| 2019-03-13 | Rollup merge of #58876 - estebank:numeric-lifetime, r=petrochenkov | Mazdak Farrokhzad | -0/+32 | |
| Parse lifetimes that start with a number and give specific error Fix #58786. | ||||
| 2019-03-11 | Update tests that don't run on my platform | Vadim Petrochenkov | -1/+1 | |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -320/+320 | |
| 2019-03-09 | review comments | Esteban Küber | -4/+4 | |
| 2019-03-08 | Parse lifetimes that start with a number and give specific error | Esteban Küber | -0/+32 | |
| 2019-03-06 | Add regression test for #58886 | Esteban Küber | -0/+53 | |
| 2019-03-06 | Bail when encountering a second unexpected token in the same span | Esteban Küber | -16/+1 | |
| 2019-02-27 | Rename variadic to c_variadic | Dan Robertson | -4/+4 | |
| Function signatures with the `variadic` member set are actually C-variadic functions. Make this a little more explicit by renaming the `variadic` boolean value, `c_variadic`. | ||||
| 2019-02-27 | Support defining C compatible variadic functions | Dan Robertson | -2/+2 | |
| Add support for defining C compatible variadic functions in unsafe rust with extern "C". | ||||
| 2019-02-25 | Stabilize `unrestricted_attribute_tokens` | Vadim Petrochenkov | -3/+1 | |
| 2019-02-25 | Restrict value in key-value attributes to literals | Vadim Petrochenkov | -2/+2 | |
| 2019-02-24 | Rollup merge of #57364 - hdhoang:33418_negative_bounds, r=estebank | Mazdak Farrokhzad | -0/+72 | |
| Improve parsing diagnostic for negative supertrait bounds closes #33418 r? @estebank | ||||
| 2019-02-23 | Rollup merge of #58526 - pmccarter:master, r=estebank | Mazdak Farrokhzad | -0/+19 | |
| Special suggestion for illegal unicode curly quote pairs Fixes #58436 Did not end up expanding the error message span to include the full string literal since I figured the start of the token was the issue, while the help suggestion span would include up to the closing quotation mark. The look ahead logic does not affect the reader position, not sure if that is an issue (if eg it should still continue to parse after the closing quote without erroring out). | ||||
| 2019-02-23 | Improve parsing diagnostic for negative supertrait bounds | Hoàng Đức Hiếu | -0/+72 | |
| 2019-02-22 | Rollup merge of #58198 - ↵ | Mazdak Farrokhzad | -4/+4 | |
| igorsdv:suggest-removing-parentheses-surrounding-lifetimes, r=estebank Suggest removing parentheses surrounding lifetimes Fixes #57386. r? @estebank | ||||
| 2019-02-16 | ui test for directed quote help suggestion #58436 | Patrick McCarter | -0/+19 | |
| 2019-02-09 | Auto merge of #57944 - estebank:unclosed-delim-the-quickening, r=oli-obk | bors | -21/+13 | |
| Deduplicate mismatched delimiter errors Delay unmatched delimiter errors until after the parser has run to deduplicate them when parsing and attempt recovering intelligently. Second attempt at #54029, follow up to #53949. Fix #31528. | ||||
| 2019-02-07 | Suggest removing parentheses surrounding lifetimes | Igor Sadikov | -4/+4 | |
| 2019-02-07 | Update tests | varkor | -57/+25 | |
| Co-Authored-By: Gabriel Smith <yodaldevoid@users.noreply.github.com> | ||||
| 2019-02-07 | tweak wording based on in person feedback | Esteban Küber | -7/+5 | |
| 2019-02-07 | Deduplicate mismatched delimiter errors | Esteban Küber | -25/+19 | |
| Delay unmatched delimiter errors until after the parser has run to deduplicate them when parsing and attempt recovering intelligently. | ||||
| 2019-01-27 | Update comment in test which has changed its purpose | Mark Rousskov | -4/+2 | |
| 2019-01-25 | Suggestion moving types before associated types. | David Wood | -0/+4 | |
| This commit extends existing suggestions to move lifetimes before types in generic arguments to also suggest moving types behind associated type bindings. | ||||
| 2019-01-24 | Rollup merge of #57795 - estebank:did-you-mean, r=zackmdavis | Mazdak Farrokhzad | -4/+4 | |
| Use structured suggestion in stead of notes | ||||
| 2019-01-24 | Rollup merge of #57779 - estebank:recover-struct-fields, r=davidtwco | Mazdak Farrokhzad | -34/+39 | |
| Recover from parse errors in literal struct fields and incorrect float literals Fix #52496. | ||||
| 2019-01-21 | Accept more invalid code that is close to correct fields | Esteban Küber | -11/+3 | |
