about summary refs log tree commit diff
path: root/tests/ui/parser
AgeCommit message (Expand)AuthorLines
2023-12-21Simple modification of diagnostic informationsurechen-2/+2
2023-12-18Auto merge of #117818 - fmease:properly-reject-defaultness-on-free-consts, r=...bors-8/+36
2023-12-14Change expr_trailing_brace to an exhaustive match to force new expression kin...GearsDatapacks-0/+396
2023-12-12Rollup merge of #118868 - Nadrieril:correctly-gate-never_patterns-parsing, r=...Matthias Krüger-13/+5
2023-12-12Correctly gate the parsing of match arms without bodyNadrieril-13/+5
2023-12-12Improve an error involving attribute values.Nicholas Nethercote-12/+28
2023-12-08Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errorsbors-22/+229
2023-12-05Rollup merge of #118585 - sjwang05:issue-118564, r=compiler-errorsMichael Goulet-1/+11
2023-12-05Rollup merge of #117922 - estebank:unclosed-generics, r=b-naberMatthias Krüger-6/+4
2023-12-04Fix parser ICE when recovering `dyn`/`impl` after `for<...>`sjwang05-1/+11
2023-12-03Disallow an arm without a body (except for never patterns)Nadrieril-7/+86
2023-12-03Detect attempts to expand a macro to a match arm againNadrieril-0/+2
2023-12-03Parse a pattern with no armNadrieril-103/+39
2023-12-03Auto merge of #118542 - chenyukang:yukang-fix-parser-ice-118531, r=cjgillotbors-0/+106
2023-12-02Fix parser ICE from attrsyukang-0/+106
2023-12-02Add testsNadrieril-0/+190
2023-12-01Tweak unclosed generics errorsEsteban Küber-6/+4
2023-11-29Always emit help when failing to parse enum variantEsteban Küber-0/+4
2023-11-29Fix tidyEsteban Küber-2/+15
2023-11-29Fix test and move to more appropriate directoryEsteban Küber-37/+63
2023-11-29Change how `for (x in foo) {}` is handledEsteban Küber-11/+62
2023-11-29Account for `(pat if expr) => {}`Esteban Küber-8/+25
2023-11-29Change enum parse recoveryEsteban Küber-13/+9
2023-11-29Bubble parse error when expecting `)`Esteban Küber-37/+20
2023-11-29More accurate span for unnecessary parens suggestionEsteban Küber-1/+1
2023-11-29When parsing patterns, bubble all errors except reserved idents that aren't l...Esteban Küber-2/+40
2023-11-29Make `parse_pat_ident` not recover bad nameEsteban Küber-104/+7
2023-11-24Show number in error message even for one errorNilstrieb-386/+386
2023-11-19Rollup merge of #117988 - estebank:issue-106020, r=cjgillotMichael Goulet-0/+73
2023-11-19Rollup merge of #117891 - compiler-errors:recover-for-dyn, r=davidtwcoMichael Goulet-0/+35
2023-11-19Don't sort `span_suggestions`, leave that to callerEsteban Küber-4/+4
2023-11-19Rollup merge of #117110 - estebank:deref-field-suggestion, r=b-naberTakayuki Maeda-3/+3
2023-11-17Auto merge of #118023 - matthiaskrgr:rollup-i9skwic, r=matthiaskrgrbors-1/+0
2023-11-17Rollup merge of #117338 - workingjubilee:asmjs-meets-thanatos, r=b-naberMatthias Krüger-1/+0
2023-11-17Auto merge of #114292 - estebank:issue-71039, r=b-naberbors-4/+4
2023-11-17Rollup merge of #117990 - estebank:issue-100825-part-deux, r=NilstriebMatthias Krüger-5/+68
2023-11-16Fix code indentationEsteban Küber-1/+1
2023-11-16Handle attempts to have multiple `cfg`d tail expressionsEsteban Küber-0/+73
2023-11-16recover primary span labelEsteban Küber-11/+11
2023-11-16Suggest field typo through derefsEsteban Küber-8/+8
2023-11-16Add test for parens around match arm pattern and conditionEsteban Küber-0/+63
2023-11-16Smaller span for unnessary `mut` suggestionEsteban Küber-5/+5
2023-11-16Move tests to subdirectoryEsteban Küber-0/+0
2023-11-16More detail when expecting expression but encountering bad macro argumentEsteban Küber-4/+4
2023-11-14Detect more `=>` typosEsteban Küber-0/+39
2023-11-14Recover `dyn` and `impl` after `for<...>`Michael Goulet-0/+35
2023-11-13Auto merge of #117770 - sjwang05:issue-117766, r=estebank,TaKO8Kibors-0/+123
2023-11-11Move unclosed delim errors to separate functionsjwang05-10/+4
2023-11-11Reject defaultness on free constsLeón Orell Valerian Liehr-8/+36
2023-11-10Correctly handle while-let-chainssjwang05-2/+49