aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/ok/0121_match_arms_outer_attributes.txt
Commit message (Collapse)AuthorAgeFilesLines
* always show token textAleksey Kladov2019-04-021-92/+92
|
* Fix parse tree of attribute on match armpcpthm2019-03-171-78/+78
|
* Enable parsing of attributes inside a match blockVille Penttinen2019-02-171-0/+135
We allow invalid inner attributes to be parsed, e.g. inner attributes that are not directly after the opening brace of the match block. Instead we run validation on `MatchArmList` to allow better reporting of errors.