aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/name_mismatch_endblock.stderr (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-25Improve error for invalid name used in `endblock`Libravatar Guillaume Gomez1-1/+2
2023-10-23Add test specifically for named blocks, and named macrosLibravatar Guillaume Gomez1-2/+3
2022-01-31Make is_shadowing_variable() failableLibravatar René Kijewski1-3/+3
2021-07-30Use "target()" to parse "when" blockLibravatar René Kijewski1-0/+7
`target()` as used in parsing "let" and "if let" implements parsing nested tuples and structs. But it does not implement parsing literals. The functions `match_variant()` and `with_parameters()` as used in parsing "when" blocks do not implement parsing nested structs, but it implements parsing literals. This PR combines `match_variant()` and `with_parameters()` into `target()`, so that all `{%when%}` support nested structs, too.