about summary refs log tree commit diff
path: root/src/test/ui/parser/mismatched-braces
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-119/+0
2022-09-27add a label to struct/enum/union ident nameTakayuki Maeda-0/+3
2020-08-13Recover gracefully from `struct ` parse errorsEsteban Küber-9/+2
2020-03-26error_bad_item_kind: add help textMazdak Farrokhzad-0/+8
2020-02-24parse: tweak diagnostic wordingsMazdak Farrokhzad-8/+8
2020-02-24parser: tweak item kind wordingMazdak Farrokhzad-8/+8
2020-02-24parse: use `parse_item_common` in `parse_assoc_item_`.Mazdak Farrokhzad-29/+23
2020-02-15fuse extern & associated item parsing up to defaultnessMazdak Farrokhzad-6/+6
2020-02-13parser: misc small item related improvements & cleanups.Mazdak Farrokhzad-21/+18
2020-01-03tweak wording of mismatched delimiter errorsAndy Russell-16/+16
2019-12-12Alias `TraitItem` & `ImplItem`.Mazdak Farrokhzad-2/+2
Allow defaultness on trait items syntactically.
2019-11-24Auto merge of #66592 - estebank:raw-raw-ah-ah-ah, r=cramertjbors-5/+0
Rework raw ident suggestions Use heuristics to determine whethersuggesting raw identifiers is appropriate. Account for raw identifiers when printing a path in a `use` suggestion. Fix #66126.
2019-11-23Rework raw ident suggestionsEsteban Küber-5/+0
Use heuristics to determine whethersuggesting raw identifiers is appropriate. Account for raw identifiers when printing a path in a `use` suggestion.
2019-11-11syntactically allow visibility on trait item & enum variantMazdak Farrokhzad-14/+21
2019-11-06Remove "here" from "expected one of X here"Esteban Küber-2/+2
2019-10-30Do not complain about missing `fn main()` in some casesEsteban Küber-55/+13
2019-10-30Reduce ammount of errors given unclosed delimiterEsteban Küber-0/+164
When in a file with a non-terminated item, catch the error and consume the block instead of trying to recover it more granularly in order to reduce the amount of unrelated errors that would be fixed after adding the missing closing brace. Also point out the possible location of the missing closing brace.