aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add Loc2IdMapAleksey Kladov2018-11-181-0/+1
|
* Fix typosAdolfo OchagavĂ­a2018-11-111-1/+1
|
* Rename File -> SourceFileNodeAleksey Kladov2018-11-071-7/+7
|
* Rustfmt to pass CIJeremy A. Kolb2018-11-071-1/+1
|
* Show documentation for hover requestsJeremy A. Kolb2018-11-071-0/+7
|
* Use FilePosition everywhereAleksey Kladov2018-11-051-33/+19
|
* rename Position to FilePostionAleksey Kladov2018-11-051-7/+7
|
* Fully add inline modules to module treeAleksey Kladov2018-11-051-2/+6
|
* Use Default everywhereAleksey Kladov2018-11-041-6/+1
|
* Don't order import alphabeticalAleksey Kladov2018-11-011-4/+4
| | | | | alphabetical ordering is no more consistent, and much less useful then the ordering which arises naturally when you add import.
* Some docsAleksey Kladov2018-11-011-0/+12
|
* Reformat allAleksey Kladov2018-10-311-21/+26
|
* Add MockAnalysis to make testing easierAleksey Kladov2018-10-311-2/+1
|
* Move completion to ra_analysisAleksey Kladov2018-10-311-3/+6
| | | | | | While we should handle completion for isolated file, it's better achieved by using empty Analysis, rather than working only with &File: we need memoization for type inference even inside a single file.
* Move FnDescriptors to analyzerAleksey Kladov2018-10-311-1/+1
|
* introduce syntax-ptrAleksey Kladov2018-10-301-0/+1
|
* Move input to top-levelAleksey Kladov2018-10-251-30/+3
|
* Encapsulate CrateGraph a bitAleksey Kladov2018-10-251-3/+15
|
* Improve loggingAleksey Kladov2018-10-251-3/+16
|
* Store all the data in the Salsa DatabaseAleksey Kladov2018-10-251-24/+57
|
* Complete crate:: pathsAleksey Kladov2018-10-241-2/+2
|
* simplify rootsAleksey Kladov2018-10-241-4/+0
|
* Introduce ModuleIdAleksey Kladov2018-10-231-1/+0
| | | | | | | 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.
* cleanupAleksey Kladov2018-10-201-1/+0
|
* Remove job handleAleksey Kladov2018-10-201-4/+0
|
* use pythonic import orderAleksey Kladov2018-10-201-1/+2
| | | | | | | | use std // blank line use extern crates // blank line use crate::{}
* actually check for cancelationAleksey Kladov2018-10-201-4/+4
|
* make file-symbols query cancelableAleksey Kladov2018-10-201-2/+2
|
* mark module queries as cacelableAleksey Kladov2018-10-201-5/+5
|
* make more things cancelableAleksey Kladov2018-10-201-14/+13
|
* remove job tokensAleksey Kladov2018-10-201-23/+21
|
* make parent module cancelableAleksey Kladov2018-10-201-1/+10
|
* introduce cancelableAleksey Kladov2018-10-201-0/+5
|
* Implement Find All References for local variablesJeremy A. Kolb2018-10-181-0/+3
|
* Cargo FormatJeremy A. Kolb2018-10-161-32/+46
| | | | Run `cargo fmt` and ignore generated files
* SimplifyAleksey Kladov2018-10-151-1/+0
|
* remove clonesAleksey Kladov2018-10-151-1/+1
|
* make analysis syncAleksey Kladov2018-10-151-0/+6
|
* migrate modue map to salsaAleksey Kladov2018-10-151-1/+1
|
* start salsa migrationAleksey Kladov2018-10-151-2/+2
|
* migrate analysis and server to 2018Aleksey Kladov2018-10-151-3/+5
|
* Language Server: textDocument/signatureHelpJeremy A. Kolb2018-10-111-0/+6
| | | | | | | | | | 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-111-2/+3
|
* Add on-enter handlerAleksey Kladov2018-10-091-0/+6
| | | | Now, typing doc comments is much more pleasant
* Split folding ranges into editor and lsp partsJeremy A. Kolb2018-09-241-0/+5
|
* rename all thingsAleksey Kladov2018-09-161-0/+240