aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | rename completion kindAleksey Kladov2018-12-211-6/+6
| | | |
* | | | Merge #316bors[bot]2018-12-213-3/+39
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 316: Fix handling of nested self in paths r=matklad a=DJMcNab See https://github.com/rust-analyzer/rust-analyzer/issues/231#issuecomment-442449505. Co-authored-by: DJMcNab <[email protected]>
| * | | | Move the self handling from directly inside the loopDJMcNab2018-12-211-13/+12
| | | | |
| * | | | Fix handling of nested self in pathsDJMcNab2018-12-213-3/+40
| | | | |
* | | | | Remove TODO on self_hosting_parsingDJMcNab2018-12-211-8/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This improving this code is not a good use of people-time, and this might be the most performant approach nonwithstanding an api for this use case being added to walkdir
* | | | | Remove uneeded todo in lexerDJMcNab2018-12-211-1/+1
| |/ / / |/| | |
* | | | Merge #315bors[bot]2018-12-219-771/+878
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 315: Split completion into manageable components r=matklad a=matklad The main idea here is to do completion in two phases: * first, we figure out surrounding context * then, we run a series of completers on the given context. Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | cleanupAleksey Kladov2018-12-215-15/+7
| | | | |
| * | | | docsAleksey Kladov2018-12-217-167/+181
| | | | |
| * | | | rename testsAleksey Kladov2018-12-211-8/+8
| | | | |
| * | | | scope-based copmletions on original fileAleksey Kladov2018-12-215-322/+223
| | | | |
| * | | | move path completion to a separate componentAleksey Kladov2018-12-213-44/+127
| | | | |
| * | | | more completion componentsAleksey Kladov2018-12-214-95/+104
| | | | |
| * | | | Start splitting completion into componentsAleksey Kladov2018-12-214-339/+424
| | | | |
| * | | | wipAleksey Kladov2018-12-211-5/+28
| | | | |
* | | | | remove explicit serde_deriveAleksey Kladov2018-12-215-6/+4
| |/ / / |/| | |
* | | | join lines collapses use_treesAleksey Kladov2018-12-211-0/+58
| | | |
* | | | Fix where clauses using fully qualified path syntaxDJMcNab2018-12-215-9/+139
| | | |
* | | | hide empty changesAleksey Kladov2018-12-212-7/+20
|/ / /
* | | add tests for pdAleksey Kladov2018-12-211-2/+13
| | |
* | | show debug repr of literalsAleksey Kladov2018-12-214-4/+4
| | |
* | | organize completion tests betterAleksey Kladov2018-12-215-393/+488
| | |
* | | use completions in APIAleksey Kladov2018-12-212-8/+7
| | |
* | | use Completions to collect completionsAleksey Kladov2018-12-213-26/+38
| | |
* | | docsAleksey Kladov2018-12-211-0/+5
| | |
* | | introduce CompletionsAleksey Kladov2018-12-211-0/+23
| | |
* | | make compleion item details privateAleksey Kladov2018-12-215-36/+65
| | |
* | | use builder interface for completion itemAleksey Kladov2018-12-213-55/+36
| | |
* | | flip paramsAleksey Kladov2018-12-211-3/+3
| | |
* | | introduce completion_item moduleAleksey Kladov2018-12-213-21/+54
|/ /
* | Merge #306bors[bot]2018-12-213-1/+2399
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 306: Finish weird exprs r=DJMcNab a=DJMcNab Fix #290. Note that I'm not certain my use of `p.nth(1) == Ident` is entirely consistent with `libsyntax` - in the original, [`is_union_item`](https://github.com/rust-lang/rust/blob/9622f9dc4745eb59fd229477f453ae83e8044db9/src/libsyntax/parse/parser.rs#L4593-L4596) uses `t.is_ident() && !t.is_reserved_ident()`, whereas we effectively only do `is_ident`. However, I cannot find the definition of `is_reserved_ident` (even searching the rust repository only gives uses, no definitions), so this will have to do unless someone else can find it :|. Co-authored-by: DJMcNab <[email protected]>
| * | Add comment about the source of the weird_exprs testDJMcNab2018-12-212-2235/+2248
| | |
| * | Add weird_exprs testDJMcNab2018-12-202-0/+2385
| | |
| * | Fix parsing of contextual_keyword unionDJMcNab2018-12-201-1/+1
| | |
* | | use root-relative pathsAleksey Kladov2018-12-212-7/+3
| | |
* | | edits use source-root APIAleksey Kladov2018-12-214-16/+28
| | |
* | | hide atom edits a bitAleksey Kladov2018-12-215-12/+24
| | |
* | | better debug implsAleksey Kladov2018-12-212-2/+17
| | |
* | | fix SourceFileEdit nameAleksey Kladov2018-12-213-6/+6
| | |
* | | tweak canceled messageAleksey Kladov2018-12-212-2/+2
| | |
| | |
| \ \
*-. \ \ Merge #305 #307bors[bot]2018-12-204-43/+79
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 305: Fold curly blocks r=matklad a=matklad 307: :arrow_up: 1.31.1 r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| | * | :arrow_up: 1.31.1Aleksey Kladov2018-12-201-1/+1
| |/ / |/| |
| * | fold curly blocksAleksey Kladov2018-12-203-18/+30
| | |
| * | generalize folding testsAleksey Kladov2018-12-202-28/+52
|/ / | | | | | | By using xml-like tags, we will be able to test nested foldings.
* | Run gen-testsDJMcNab2018-12-202-0/+59
| |
* | Use a better way of skipping SEMIsDJMcNab2018-12-201-6/+6
| |
* | Support a blank expression before a semicolonDJMcNab2018-12-201-0/+6
| |
* | Fix broken test is deleted commentDJMcNab2018-12-201-1/+1
| |
* | Fix the tests and fix the precommit hookDJMcNab2018-12-20255-561/+210
| |
* | Fix missing DOTDOTEQsDJMcNab2018-12-201-3/+3
| |