Skip to content

Commit 692bc34

Browse files
committed
Make parse error suggestions verbose and fix spans
Go over all structured parser suggestions and make them verbose style. When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
1 parent 5e311f9 commit 692bc34

File tree

175 files changed

+3197
-786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+3197
-786
lines changed

compiler/rustc_parse/messages.ftl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parse_add_paren = try adding parentheses
22
33
parse_ambiguous_range_pattern = the range pattern here has ambiguous interpretation
4-
.suggestion = add parentheses to clarify the precedence
4+
parse_ambiguous_range_pattern_suggestion = add parentheses to clarify the precedence
55
66
parse_array_brackets_instead_of_braces = this is a block expression, not an array
77
.suggestion = to make an array, use square brackets instead of curly braces
@@ -644,7 +644,7 @@ parse_parentheses_with_struct_fields = invalid `struct` delimiters or `fn` call
644644
.suggestion_no_fields_for_fn = if `{$type}` is a function, use the arguments directly
645645
646646
parse_parenthesized_lifetime = parenthesized lifetime bounds are not supported
647-
.suggestion = remove the parentheses
647+
parse_parenthesized_lifetime_suggestion = remove the parentheses
648648
649649
parse_path_single_colon = path separator must be a double colon
650650
.suggestion = use a double colon instead

0 commit comments

Comments
 (0)