aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/src
Commit message (Collapse)AuthorAgeFilesLines
* Introduce ModuleIdAleksey Kladov2018-10-239-437/+487
| | | | | | | Previously, module was synonym with a file, and so a module could have had several parents. This commit introduces a separate module concept, such that each module has only one parent, but a single file can correspond to different modules.
* Merge #138bors[bot]2018-10-223-6/+11
|\ | | | | | | | | | | | | | | | | | | | | | | 138: Fix some clippy lints r=matklad a=alanhdu I went ahead and fixed all the clippy lints (there were a couple I thought would be better unfixed and added `cfg` statements to allow them) and also re-enabled clippy and rustfmt in CI. They were disabled with `no time to explain, disable clippy checks`, so hopefully this won't go against whatever the reason at the time was :laughing:. One question about the CI though: right now, it's an allowed failure that runs against the latest nightly each time. Would it be better to pin it to a specific nightly (or use the `beta` versions) to lower the churn? Co-authored-by: Alan Du <[email protected]>
| * Revert "clippy: Fix new_ret_no_self"Alan Du2018-10-203-3/+3
| | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d.
| * Fix function callsAlan Du2018-10-182-3/+2
| |
| * clippy: needless_lifetimesAlan Du2018-10-181-1/+1
| |
| * clippy: Fix new_ret_no_selfAlan Du2018-10-183-3/+3
| |
| * Silence clippy::derive_hash_xor_eqAlan Du2018-10-181-1/+7
| | | | | | | | Manually implement PartialEq
| * Clippy lint: single-character string constantAlan Du2018-10-181-1/+1
| |
* | cleanupAleksey Kladov2018-10-201-1/+0
| |
* | Remove job handleAleksey Kladov2018-10-202-57/+0
| |
* | use pythonic import orderAleksey Kladov2018-10-203-8/+11
| | | | | | | | | | | | | | | | use std // blank line use extern crates // blank line use crate::{}
* | actually check for cancelationAleksey Kladov2018-10-203-7/+20
| |
* | make file-symbols query cancelableAleksey Kladov2018-10-204-40/+48
| |
* | mark module queries as cacelableAleksey Kladov2018-10-204-29/+31
| |
* | make more things cancelableAleksey Kladov2018-10-202-15/+14
| |
* | remove job tokensAleksey Kladov2018-10-203-35/+30
| |
* | make parent module cancelableAleksey Kladov2018-10-202-5/+15
| |
* | introduce cancelableAleksey Kladov2018-10-201-0/+5
| |
* | update salsaAleksey Kladov2018-10-203-10/+10
| |
* | Implement Find All References for local variablesJeremy A. Kolb2018-10-182-0/+35
|/
* Cargo FormatJeremy A. Kolb2018-10-168-235/+298
| | | | Run `cargo fmt` and ignore generated files
* SimplifyAleksey Kladov2018-10-152-13/+0
|
* remove clonesAleksey Kladov2018-10-151-1/+1
|
* make analysis syncAleksey Kladov2018-10-154-19/+37
|
* Tweak writable root APIAleksey Kladov2018-10-152-11/+8
|
* remove resolver from worldAleksey Kladov2018-10-151-2/+0
|
* Drop dead codeAleksey Kladov2018-10-154-401/+0
|
* fix testsAleksey Kladov2018-10-153-11/+20
|
* Switch to the master of salsaAleksey Kladov2018-10-152-6/+6
|
* migrate modue map to salsaAleksey Kladov2018-10-155-165/+172
|
* start salsa migrationAleksey Kladov2018-10-154-89/+218
|
* migrate analysis and server to 2018Aleksey Kladov2018-10-159-23/+25
|
* A FnDescriptor shouldn't exist without a nameJeremy A. Kolb2018-10-122-44/+42
|
* Language Server: textDocument/signatureHelpJeremy A. Kolb2018-10-113-5/+171
| | | | | | | | | | Implements a pretty barebones function signature help mechanism in the language server. Users can use `Analysis::resolve_callback()` to get basic information about a call site. Fixes #102
* Replace HashMap, HashSet with FxHashMap and FxHashSetMuhammad Mominul Huque2018-10-114-12/+15
|
* Add on-enter handlerAleksey Kladov2018-10-091-0/+6
| | | | Now, typing doc comments is much more pleasant
* Resolve local names firstJeremy A. Kolb2018-10-061-4/+4
|
* WIP: This doesn't currently work but I also don't think it's the right ↵Jeremy A. Kolb2018-10-051-2/+16
| | | | abstraction
* Split folding ranges into editor and lsp partsJeremy A. Kolb2018-09-241-0/+5
|
* rename all thingsAleksey Kladov2018-09-1610-0/+1556