aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup parser modifiers testsAleksey Kladov2020-08-1234-291/+50
|
* Allow default everywhereAleksey Kladov2020-08-1211-181/+70
| | | | closes #5681
* Update grammarAleksey Kladov2020-08-0116-27/+27
|
* Rename DotDotPat -> RestPatAleksey Kladov2020-07-315-29/+29
|
* Rename BindPat -> IdentPatAleksey Kladov2020-07-3127-81/+81
|
* Rename PalceholderPat -> WildcardPatAleksey Kladov2020-07-3127-69/+69
|
* Allign RecordPat with RecordExprAleksey Kladov2020-07-314-16/+16
|
* Fix const arguments grammarAleksey Kladov2020-07-311-1/+2
|
* Rename TypeArgList -> GenericArgListAleksey Kladov2020-07-3114-19/+19
|
* Rename LambdaExpr -> ClosureExprAleksey Kladov2020-07-314-10/+10
|
* Reame PlaceholderType -> InferTypeAleksey Kladov2020-07-312-2/+2
|
* Finalize impl GrammarAleksey Kladov2020-07-3016-21/+21
|
* Finalize Trait grammarAleksey Kladov2020-07-307-10/+10
|
* Finalize const&static grammarAleksey Kladov2020-07-305-5/+5
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-303-6/+6
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-303-3/+3
|
* Rename StructDef -> StructAleksey Kladov2020-07-3011-20/+20
|
* Finalize union grammarAleksey Kladov2020-07-301-2/+2
|
* Rename FieldDef -> FieldAleksey Kladov2020-07-308-27/+27
|
* Rename RecordLit -> RecordExprAleksey Kladov2020-07-306-27/+27
|
* Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-3015-22/+22
|
* Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-3033-46/+46
|
* Rename FnDef -> FnAleksey Kladov2020-07-30113-133/+133
|
* Update testsAleksey Kladov2020-07-307-18/+18
|
* Update testsAleksey Kladov2020-07-301-1/+1
|
* Update testsAleksey Kladov2020-07-301-4/+4
|
* Update testsAleksey Kladov2020-07-3021-25/+25
|
* Fix panic in split and merge import assistsLaurențiu Nicola2020-06-232-0/+16
|
* Update parser tests with env varAleksey Kladov2020-06-151-1/+0
|
* Add example of old trait object syntaxMatthew Jasper2020-06-112-1/+38
|
* Move complex inline test to own fileMatthew Jasper2020-06-112-267/+1
|
* Separating parsing of `for` in predicates and typesMatthew Jasper2020-06-104-273/+372
|
* Correctly parse <_> paths in patternsAleksey Kladov2020-06-092-0/+39
| | | | closes #3659
* Parse default unsafe fnAvi Dessauer2020-06-082-0/+43
|
* Move default const test out of lineAvi Dessauer2020-06-044-90/+0
|
* Update testsAvi Dessauer2020-06-046-0/+109
|
* Parse default unsafe & default constAvi Dessauer2020-06-041-14/+20
|
* Support raw_ref_op's raw reference operatorrobojumper2020-05-282-44/+134
|
* Fix parsing of blocks without `{`Aleksey Kladov2020-05-022-24/+0
|
* Cleanup inline testsAleksey Kladov2020-05-028-30/+59
|
* Update test dataAleksey Kladov2020-05-02110-5120/+4929
|
* Merge #4227bors[bot]2020-04-302-25/+26
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4227: Report invalid, nested, multi-segment crate-paths r=matklad a=djrenren There was a bug in the previous path-validating code that didn't detect multi-segment paths that started with `crate`. ```rust // Successfully reported use foo::{crate}; // BUG: was not being reported use foo::{crate::bar}; ``` This was due to my confusion about path-associativity. That is, the path with no qualifier is the innermost path, not the outermost. I've updated the code with a lot of comments to explain what's going on. This bug was discovered when I found an erroneous `ok` test which I reported here: https://github.com/rust-analyzer/rust-analyzer/issues/4226 This test now fails and has been modified, hopefully in the spirit of the original test, to be correct. Sorry about submitting the bug in the first place! Co-authored-by: John Renner <[email protected]>
| * Report invalid, nested, multi-segment crate-pathsJohn Renner2020-04-302-25/+26
| | | | | | | | | | | | | | | | | | | | Specifically, things like: use foo::{crate::bar}; Are now being caught, when before we only caught: use foo::{crate};
* | Special-case try macro_rulesEdwin Cheng2020-04-302-0/+28
|/
* Special-case try macro to better support 2015 editionAleksey Kladov2020-04-302-0/+36
|
* Convert tests to text-sizeAleksey Kladov2020-04-25172-10327/+10327
|
* Align grammar for record patterns and literalsAleksey Kladov2020-04-113-21/+25
| | | | | | The grammar now looks like this [name_ref :] pat
* Make records grammar more orthogonalAleksey Kladov2020-04-113-4/+62
| | | | | | | | | | | | We used name [: expr] grammar before, now it is [name :] expr which makes things simpler
* Rename some tokensAleksey Kladov2020-04-10120-405/+405
|
* Migrate tests .txt -> .rastveetaha2020-04-06171-0/+0
| | | | | | | | The sytax tree output files now use .rast extension (rust-analyzer syntax tree or rust abstract syntax tree (whatever)). This format has a editors/code/ra_syntax_tree.tmGrammar.json declaration that supplies nice syntax highlighting for .rast files.