aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup CFG APIAleksey Kladov2020-07-236-63/+44
|
* Remove dead codeAleksey Kladov2020-07-231-4/+0
|
* Merge #5504bors[bot]2020-07-231-3/+3
|\ | | | | | | | | | | | | | | | | | | | | 5504: Reduce visibility r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Reduce visibilityAleksey Kladov2020-07-231-3/+3
| |
* | Merge #5498bors[bot]2020-07-231-1/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | 5498: assists: change_return_type_to_result: clarify assist description r=matklad a=matthiaskrgr I had a -> Option<PathBuf> fn, which I wanted to change to Result<PathBuf, _>, but despite advertising to do so, the assist did not change the result type to Result<PathBuf, _> but instead just wrapped it in a Result: <Result<Option<PathBuf>, _>. I changed the assist description to "Wrap return type in Result" to clarify that the assist only wraps the preexisting type and does not do any actual Option-to-Result refactoring. Co-authored-by: Matthias KrĂĽger <[email protected]>
| * assists: change_return_type_to_result: clarify assist descriptionMatthias KrĂĽger2020-07-221-1/+1
| | | | | | | | | | | | | | | | I had a -> Option<PathBuf> fn, which I wanted to change to Result<PathBuf, _>, but despite advertising to do so, the assist did not change the result type to Result<PathBuf, _> but instead just wrapped it in a Result: <Result<Option<PathBuf>, _>. I changed the assist description to "Wrap return type in Result" to clarify that the assist only wraps the preexisting type and does not do any deep Option-to-Result refactoring.
* | Merge #5480bors[bot]2020-07-231-0/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5480: Fix snippetTextEdits applying to other files r=matklad a=TimoFreiberg Fixes #4551 `vscode.window.visibleTextEditors` only contains editors whose contents are being displayed at the moment, so the previous logic only worked if the other file for which a snippetTextEdit is being received was visible in a separate split. I feel that this is a hacky approach, so feel free to reject it for something nicer :) Co-authored-by: Timo Freiberg <[email protected]>
| * | Fix snippetTextEdits applying to other filesTimo Freiberg2020-07-221-0/+4
| | | | | | | | | | | | | | | | | | | | | vscode.window.visibleTextEditors only contains editors whose contents are being displayed at the moment, so the previous logic only worked if the other file for which a snippetTextEdit is being received was visible in a separate split.
* | | Merge #5500bors[bot]2020-07-232-3/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5500: ProblemMatcher fixes/improvements. r=matklad a=rickvanprim Fixes https://github.com/rust-analyzer/rust-analyzer/issues/5482. ProblemMatcher auto detects relative/absolute paths and matches VSCode LSP's owner and source. VSCode LSP updated to specify owner. Co-authored-by: James Leitch <[email protected]>
| * | | ProblemMatcher auto detects relative/absolute paths and matches VSCode LSP's ↵James Leitch2020-07-232-3/+10
| | |/ | |/| | | | | | | owner and source. VSCode LSP updated to specify owner.
* | | Merge #5503bors[bot]2020-07-235-13/+37
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5503: Replace superslice with API on path to stabilization r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Replace superslice with API on path to stabilizationAleksey Kladov2020-07-235-13/+37
| | | |
* | | | Merge #5497bors[bot]2020-07-235-13/+20
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 5497: Store macro invocation parameters as text instead of tt r=jonas-schievink a=lnicola We don't want to expand macros on every source change because it can be arbitrarily slow, but the token trees can be rather large. So instead we can cache the invocation parameters (as text). Co-authored-by: LaurenČ›iu Nicola <[email protected]>
| * | | Store macro invocation parameters as text instead of ttLaurențiu Nicola2020-07-225-13/+20
| | | |
* | | | Merge #5501bors[bot]2020-07-231-16/+16
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5501: minor r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | minorAleksey Kladov2020-07-231-16/+16
|/ / /
* | | Merge #5492bors[bot]2020-07-223-4/+24
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | 5492: Use symbol tags r=matklad a=kjeremy Currently the only spec'd tag is "deprecated". Co-authored-by: kjeremy <[email protected]>
| * | Move deprecated attribute to where it is neededkjeremy2020-07-221-2/+6
| | |
| * | Use symbol tagskjeremy2020-07-223-4/+20
|/ /
* | Merge #5488bors[bot]2020-07-221-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | 5488: Update manual.adoc r=matklad a=Veetaha Co-authored-by: Veetaha <[email protected]>
| * | Update manual.adocVeetaha2020-07-221-2/+2
| | |
* | | Merge #5489bors[bot]2020-07-221-3/+5
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 5489: Clarify initializationOptions r=matklad a=kjeremy Co-authored-by: Jeremy Kolb <[email protected]>
| * | Clarify initializationOptionsJeremy Kolb2020-07-221-3/+5
|/ /
* | Merge #5481bors[bot]2020-07-223-15/+40
|\ \ | |/ |/| | | | | | | | | | | | | | | | | 5481: Track document versions in the server r=kjeremy a=kjeremy This also pushes diagnostics for the correct file version on close so that when it is reopened stale diagnostics are not shown. Closes #5452 Co-authored-by: kjeremy <[email protected]> Co-authored-by: Jeremy Kolb <[email protected]>
| * Update crates/rust-analyzer/src/main_loop.rsJeremy Kolb2020-07-221-1/+1
| | | | | | Co-authored-by: Aleksey Kladov <[email protected]>
| * Clear diagnostics for known file version on closekjeremy2020-07-211-3/+10
| |
| * Store document version and pass back to the clientkjeremy2020-07-213-13/+31
| |
* | Merge #5475bors[bot]2020-07-226-26/+270
|\ \ | | | | | | | | | | | | | | | | | | | | | 5475: Support `Trait as _` imports r=matklad a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/2736 Co-authored-by: Jonas Schievink <[email protected]>
| * | Check that visibility upgrade path is hitJonas Schievink2020-07-222-4/+8
| | |
| * | Support `Trait as _` importsJonas Schievink2020-07-216-26/+266
| |/
* | Merge #5487bors[bot]2020-07-2211-119/+13
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5487: Setup global allocator in the correct crate r=matklad a=matklad It worked before, but was roundabout bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Setup global allocator in the correct crateAleksey Kladov2020-07-225-10/+6
| | | | | | | | | | | | It worked before, but was roundabout
| * | Remove support for jemallocAleksey Kladov2020-07-2210-109/+7
|/ / | | | | | | | | We only used it for measuring memory usage, but now we can use glibc's allocator for that just fine
* | Merge #5478bors[bot]2020-07-221-15/+75
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 5478: Replace existing visibility modifier in fix_visibility r=matklad a=TimoFreiberg Fixes #4636 I would have liked to do something about the `// FIXME: this really should be a fix for diagnostic, rather than an assist.`, but that would take a while and there's no reason not to fix this immediately. Co-authored-by: Timo Freiberg <[email protected]>
| * | Replace existing visibility modifier in fix_visibilityTimo Freiberg2020-07-211-15/+75
| | |
* | | Merge #5479bors[bot]2020-07-223-10/+19
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5479: Allow gathering memory stats on non-jemalloc Linux r=matklad a=jonas-schievink I could also parse `/proc/$PID/statm` to get the resident set size, but decided against that for now as it isn't terribly useful. Note that `mallinfo()` is incredibly slow for some reason, and unfortunately this will be exposed to users via the "Memory Usage" command (even worse, the opened document will show the outdated values while the server is processing). So, not very ideal, but it keeps me from recompiling r-a with different feature sets all the time. Co-authored-by: Jonas Schievink <[email protected]>
| * | | Allow gathering memory stats on non-jemalloc LinuxJonas Schievink2020-07-213-10/+19
| |/ /
* | | Merge #5483bors[bot]2020-07-211-3/+3
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 5483: bump crossbeam-channel r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | bump crossbeam-channelkjeremy2020-07-211-3/+3
|/ /
* | Merge #5476bors[bot]2020-07-211-48/+55
|\ \ | |/ |/| | | | | | | | | | | | | | | | | 5476: Cleanup extact variable r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Cleanup extact variableAleksey Kladov2020-07-211-48/+55
| |
| * minorAleksey Kladov2020-07-211-2/+2
| |
* | Merge pull request #5447 from jethrogb/gitattributesAleksey Kladov2020-07-211-0/+4
|\ \ | | | | | | Update .gitattributes
| * | Update .gitattributesJethro Beekman2020-07-201-0/+4
| | | | | | | | | | | | See rust-lang/rust#57858
* | | Merge #5472bors[bot]2020-07-2110-5457/+5369
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5472: Replace insta with expect r=matklad a=lnicola Co-authored-by: LaurenČ›iu Nicola <[email protected]>
| * | | Remove insta depLaurențiu Nicola2020-07-214-92/+3
| | | |
| * | | Replace remaining insta usesLaurențiu Nicola2020-07-216-5365/+5366
|/ / /
| | |
| \ \
| \ \
| \ \
| \ \
| \ \
*-----. \ \ Merge #5451 #5463 #5465 #5466bors[bot]2020-07-2112-92/+141
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5451: Highlight more cases of SyntaxKind when it is a punctuation r=matklad a=GrayJack This maybe closes #5406 Closes #5453 Separate what one expect to be a punctuation semantic token (like `,`, `;`, `(`, etc), and what is not (`&`, `::`, `+`, etc) 5463: Bump lexer r=matklad a=kjeremy Since we're now on rust 1.45 5465: Bump chalk r=matklad a=kjeremy 5466: Do not show default types in function and closure return values r=matklad a=SomeoneToIgnore Avoid things like <img width="522" alt="image" src="https://user-images.githubusercontent.com/2690773/87985936-1bbe4f80-cae5-11ea-9b8a-5383d896c296.png"> Co-authored-by: GrayJack <[email protected]> Co-authored-by: kjeremy <[email protected]> Co-authored-by: Kirill Bulatov <[email protected]>
| | | | * | Do not show default types in closuresKirill Bulatov2020-07-202-3/+21
| | | | | |
| | | * | | Bump chalkkjeremy2020-07-202-11/+11
| | | |/ /