aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/err/0038_endless_inclusive_range.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-121-4/+0
|
* Move inclusive range check to validationGeoffry Song2019-11-151-0/+1
|
* Fix parsing of "postfix" range expressions.Geoffry Song2019-11-151-0/+3
Right now they are handled in `postfix_dot_expr`, but that doesn't allow it to correctly handle precedence. Integrate it more tightly with the Pratt parser instead. Also includes a drive-by fix for parsing `match .. {}`. Fixes #2242.