aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax
Commit message (Collapse)AuthorAgeFilesLines
* Move remove_bounds to edit.rsJonas Schievink2020-07-142-13/+15
|
* missing impl members: remove assoc. type boundsJonas Schievink2020-07-141-0/+13
|
* Comment decorationsAleksey Kladov2020-07-121-1/+4
| | | | closes #4461
* Make slow test parallelAleksey Kladov2020-07-112-18/+30
|
* Don't mess with cursor position when adding hashesAleksey Kladov2020-07-091-6/+11
|
* SimplifyAleksey Kladov2020-07-091-1/+2
|
* Unify testsAleksey Kladov2020-07-092-34/+3
|
* Clippy perf warningskjeremy2020-07-061-6/+2
| | | | Removes redundant clones
* Unify magic env var nameAleksey Kladov2020-07-011-1/+1
|
* Move parser specific tests utils to parser testsAleksey Kladov2020-07-011-1/+99
|
* Update the rest of the testsAleksey Kladov2020-06-291-0/+4
|
* Simlify with matches!()Veetaha2020-06-283-16/+10
|
* Bump rustc_lexerLaurențiu Nicola2020-06-272-13/+13
|
* Fix panic in split and merge import assistsLaurențiu Nicola2020-06-233-3/+18
|
* Merge #4962bors[bot]2020-06-2129-1/+222
|\ | | | | | | | | | | | | | | 4962: Implement APIs for parsing expressions, types, paths, patterns and items r=davidlattimore a=davidlattimore Co-authored-by: David Lattimore <[email protected]>
| * Implement APIs for parsing expressions, types, paths, patterns and itemsDavid Lattimore2020-06-2129-1/+222
| |
* | Merge #4851bors[bot]2020-06-191-0/+4
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 4851: Add quickfix to add a struct field r=TimoFreiberg a=TimoFreiberg Related to #4563 I created a quickfix for record literals first because the NoSuchField diagnostic was already there. To offer that quickfix for FieldExprs with unknown fields I'd need to add a new diagnostic (or create a `NoSuchField` diagnostic for those cases) I think it'd make sense to make this a snippet completion (to select the generated type), but this would require changing the `Analysis` API and I'd like some feedback before I touch that. Co-authored-by: Timo Freiberg <[email protected]>
| * Add quickfix to add a struct fieldTimo Freiberg2020-06-121-0/+4
| |
* | Merge #4872bors[bot]2020-06-181-46/+43
|\ \ | | | | | | | | | | | | | | | | | | | | | 4872: Reduce the usage of bare subscript operator r=matklad a=Veetaha Co-authored-by: Veetaha <[email protected]>
| * | Reduce the usage of bare subscript operatorVeetaha2020-06-141-46/+43
| |/
* | Merge #4878bors[bot]2020-06-161-0/+8
|\ \ | | | | | | | | | | | | | | | | | | | | | 4878: Make "Replace qualified name with use" replace *all* mentions of the path r=matklad a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/4836 Co-authored-by: Jonas Schievink <[email protected]>
| * | Fix `rewrite_root` when there's only 1 replacementJonas Schievink2020-06-131-0/+8
| |/
* | Make ra_syntax::{SyntaxNodeChildren, SyntaxElementChildren} public.David Lattimore2020-06-151-1/+2
| | | | | | | | SyntaxNode::children and SyntaxNode::children_with_tokens return these types, but there's currently no way AFAIK to name them.
* | Update parser tests with env varAleksey Kladov2020-06-151-1/+0
|/
* Merge #4855bors[bot]2020-06-122-141/+141
|\ | | | | | | | | | | | | | | 4855: Use more idiomatic style for lifetimes in generated code r=matklad a=Veetaha Co-authored-by: Veetaha <[email protected]>
| * Apply codegen with idiomatic lifetimesVeetaha2020-06-112-141/+141
| |
* | SimplifyVeetaha2020-06-121-5/+5
|/
* Add example of old trait object syntaxMatthew Jasper2020-06-112-1/+38
|
* Move complex inline test to own fileMatthew Jasper2020-06-116-356/+670
|
* Separating parsing of `for` in predicates and typesMatthew Jasper2020-06-109-282/+477
|
* Correctly parse <_> paths in patternsAleksey Kladov2020-06-093-37/+76
| | | | closes #3659
* Merge #4812bors[bot]2020-06-091-4/+9
|\ | | | | | | | | | | | | | | | | | | | | 4812: Use correct indent when replacing with match r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Use correct indent when replacing with matchAleksey Kladov2020-06-091-4/+9
| |
* | Parse default unsafe fnAvi Dessauer2020-06-082-0/+43
|/
* Fix bug in lexer for format specifier where the `type` and `width` were not ↵Leander Tentrup2020-06-071-14/+23
| | | | correctly distinguished
* Move default const test out of lineAvi Dessauer2020-06-044-0/+0
|
* Update testsAvi Dessauer2020-06-046-0/+109
|
* Parse default unsafe & default constAvi Dessauer2020-06-041-14/+20
|
* Enable hover and autocomplete docs on macro generated itemsAaron Loucks2020-06-031-2/+11
|
* Merge #4658bors[bot]2020-06-021-5/+0
|\ | | | | | | | | | | | | | | | | | | 4658: Fix problem with format string tokenization r=matklad a=ruabmbua Fixed by just not handling closing curlybrace escaping. Closes https://github.com/rust-analyzer/rust-analyzer/issues/4637 Co-authored-by: Roland Ruckerbauer <[email protected]>
| * Fix problem with format string tokenizationRoland Ruckerbauer2020-05-301-5/+0
| | | | | | | | Fixed by just not handling closing curlybrace escaping.
* | Simplifyveetaha2020-06-021-1/+1
| |
* | Small refactorveetaha2020-05-311-2/+2
| |
* | correctly infer labelled breaksrobojumper2020-05-311-0/+1
|/
* Support raw_ref_op's raw reference operatorrobojumper2020-05-283-44/+137
|
* Update lexerkjeremy2020-05-261-1/+1
|
* Some FIXMEs were outdated:Julian Wollersberger2020-05-241-3/+1
| | | | | | | * Done at line 243: "Add validation of `crate` keyword not appearing in the middle of the symbol path" * Already happened: "Remove validation of unterminated literals (it is already implemented in `tokenize()`)" * Happens in `unescape()`: "Add validation of character literal containing only a single char" * Missing: "raw string literals and raw byte string literals"
* Update to rustc_lexer version 660.Julian Wollersberger2020-05-243-11/+12
| | | | Change `unescape_*()` to `unescape_literal()`.
*-. Merge #4521 #4522bors[bot]2020-05-203-35/+81
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4521: Use snippets in add_function r=matklad a=matklad bors r+ 🤖 4522: Explain the purpose of `ast::make` module more clearly r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| | * Explain the purpose of `ast::make` module more clearlyAleksey Kladov2020-05-201-4/+7
| |/ |/|