aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/err/0032_match_arms_inner_attrs.txt
Commit message (Collapse)AuthorAgeFilesLines
* move syntax tests to unit testsAleksey Kladov2019-07-241-201/+0
|
* show error offsets in testsAleksey Kladov2019-05-291-11/+11
|
* update test dataAleksey Kladov2019-05-281-11/+11
|
* always show token textAleksey Kladov2019-04-021-114/+114
|
* Fix parse tree of attribute on match armpcpthm2019-03-171-26/+26
|
* Parse only outer_attributes for match arms for nowVille Penttinen2019-02-171-31/+59
|
* Enable parsing of attributes inside a match blockVille Penttinen2019-02-171-0/+173
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.