aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Move NameKind upAleksey Kladov2020-02-067-253/+252
|
* SimplifyAleksey Kladov2020-02-061-3/+4
|
* Tweak goto parent moduleAleksey Kladov2020-02-062-1/+37
|
* Merge #3029bors[bot]2020-02-0638-320/+397
|\ | | | | | | | | | | | | | | 3029: Docs r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * DocsAleksey Kladov2020-02-065-75/+84
| |
| * CleanupAleksey Kladov2020-02-065-79/+81
| |
| * cleanup importsAleksey Kladov2020-02-0631-100/+103
| |
| * Move to a crateAleksey Kladov2020-02-0610-31/+80
| |
| * Move change to ide-dbAleksey Kladov2020-02-063-5/+5
| |
| * Fix test importsAleksey Kladov2020-02-061-2/+4
| |
| * Move QueryAleksey Kladov2020-02-062-41/+42
| |
| * Move symbol_indexAleksey Kladov2020-02-067-12/+16
| |
| * Move FeatureFlagsAleksey Kladov2020-02-063-4/+3
| |
| * Move line_indexAleksey Kladov2020-02-064-7/+12
| |
| * Move ide-dbAleksey Kladov2020-02-062-132/+132
| |
| * Start ide_dbAleksey Kladov2020-02-062-0/+3
| |
* | Add profiling around add_impl_membersAleksey Kladov2020-02-062-0/+2
|/ | | | | | | | | This intention is pretty slow for `impl Interator`, because it has a ton of default methods which need to be substituted. The proper fix here is to not compute the actual edit until the user triggers the action, but that's awkward to do in the LSP right now, so let's just put a profiling code for now.
* Refactor if-let -> match assist to use ast::makeAleksey Kladov2020-02-054-32/+55
|
* Merge #3019bors[bot]2020-02-051-36/+91
|\ | | | | | | | | | | | | | | 3019: Better cursor placement when merging arms r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Better cursor placement when merging armsAleksey Kladov2020-02-051-4/+17
| |
| * Merge match arms works with many armsAleksey Kladov2020-02-051-29/+70
| |
| * CleanupAleksey Kladov2020-02-051-11/+12
| |
* | Apply the reviews suggestionsKirill Bulatov2020-02-055-32/+64
| |
* | Normalize dashes in crate namesKirill Bulatov2020-02-051-8/+33
|/
* Merge #2948bors[bot]2020-02-041-6/+48
|\ | | | | | | | | | | | | | | 2948: Allow add_explicit_type to replace a placeholder type r=matklad a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]>
| * Allow add_explicit_type to replace a placeholder typeLaurențiu Nicola2020-02-031-6/+48
| |
* | minor, if let else -> matchAleksey Kladov2020-02-041-6/+3
| |
* | Make sure that newly created nodes are the root of the treeAleksey Kladov2020-02-041-2/+11
| |
* | Merge #2962bors[bot]2020-02-044-14/+34
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 2962: Differentiate underscore alias from named aliases r=matklad a=zombiefungus pre for Fixing Issue 2736 edited to avoid autoclosing the issue Co-authored-by: zombiefungus <[email protected]>
| * | include requested changeszombiefungus2020-02-024-27/+28
| | |
| * | add new ImportAlias enum to differentiate no alias from an _ aliaszombiefungus2020-02-024-11/+30
| | |
* | | ra_syntax: added tests for tokenization errorsVeetaha2020-02-03150-49/+427
| | |
* | | ra_syntax: add backticks around tokens specimenVeetaha2020-02-031-12/+23
| | |
* | | ra_syntax: removed unnecessary init statement from reparsing testsVeetaha2020-02-031-3/+0
| | |
* | | ra_syntax: rename first_token() -> lex_first_token()Veetaha2020-02-031-3/+3
| | |
* | | ra_syntax: fixed a typo in doc commentVeetaha2020-02-031-2/+4
| | |
* | | ra_syntax: refactored the lexer design as per @matklad and @kiljacken PR reviewVeetaha2020-02-039-178/+199
| | |
* | | ra_syntax: remove backticks from TokenizeError message since that is not ↵Veetaha2020-02-031-9/+9
| | | | | | | | | | | | Markdown ;(
* | | add better docs for tokenize errorsVeetaha2020-02-031-2/+2
| | |
* | | ra_syntax: moved ParsedToken derive attribute under the doc commentVeetaha2020-02-031-1/+1
| | |
* | | ra_syntax: fixed doc commentVeetaha2020-02-031-1/+1
| | |
* | | Reimplemented lexer with vectors instead of iteratorsVeetaha2020-02-0310-196/+250
| | |
* | | ra_syntax: changed added diagnostics information returned from tokenize() ↵Veetaha2020-02-034-74/+237
| | | | | | | | | | | | (implemented with iterators)
* | | Use proper import name in the labelKirill Bulatov2020-02-031-10/+6
| | |
* | | Merge #2994bors[bot]2020-02-032-12/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2994: Small cleanup r=matklad a=SomeoneToIgnore A follow-up to https://github.com/rust-analyzer/rust-analyzer/pull/2990#discussion_r374044482 Co-authored-by: Kirill Bulatov <[email protected]>
| * | | Simplify paths searchesKirill Bulatov2020-02-031-4/+3
| | | |
| * | | Fix inlay hints test snippet compilationKirill Bulatov2020-02-031-8/+8
| | | |
* | | | Merge #2959bors[bot]2020-02-0314-247/+244
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2959: Rework how we send diagnostics to client r=matklad a=kiljacken The previous way of sending from the thread pool suffered from stale diagnostics due to being canceled before we could clear the old ones. The key change is moving to sending diagnostics from the main loop thread, but doing all the hard work in the thread pool. This should provide the best of both worlds, with little to no of the downsides. This should hopefully fix a lot of issues, but we'll need testing in each individual issue to be sure. Co-authored-by: Emil Lauridsen <[email protected]>
| * | | Update snapshot tests due to removed SuggestedFixEmil Lauridsen2020-02-037-39/+67
| | | |
| * | | Remove stray todoEmil Lauridsen2020-02-031-1/+0
| | | |