aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/src/imp.rs
Commit message (Collapse)AuthorAgeFilesLines
* fix typoAleksey Kladov2018-11-201-2/+2
|
* Make most of modules impl privateAleksey Kladov2018-11-201-8/+3
|
* Use OO API instead of resolve_moduleAleksey Kladov2018-11-201-41/+17
|
* Use OO API in crate_forAleksey Kladov2018-11-201-10/+15
|
* Use more OO API for parent moduleAleksey Kladov2018-11-201-28/+16
|
* use loc2id for FnIdsAleksey Kladov2018-11-181-1/+1
|
* reorganize completionAleksey Kladov2018-11-071-13/+2
|
* rename module sourceAleksey Kladov2018-11-071-4/+4
|
* Rename File -> SourceFileNodeAleksey Kladov2018-11-071-4/+4
|
* Show documentation for hover requestsJeremy A. Kolb2018-11-071-0/+10
|
* Generalize Owned nodesAleksey Kladov2018-11-061-1/+1
|
* Use FilePosition everywhereAleksey Kladov2018-11-051-40/+34
|
* rename Position to FilePostionAleksey Kladov2018-11-051-2/+2
|
* Fully add inline modules to module treeAleksey Kladov2018-11-051-11/+16
|
* use module_for_sourceAleksey Kladov2018-11-051-4/+4
|
* Use Default everywhereAleksey Kladov2018-11-041-11/+1
|
* update salsaAleksey Kladov2018-11-011-22/+38
|
* Add inline sourceAleksey Kladov2018-11-011-10/+12
|
* Introduce ModuleSourceAleksey Kladov2018-11-011-4/+8
|
* remove SyntaxPtrDatabaseAleksey Kladov2018-11-011-1/+0
|
* Reformat allAleksey Kladov2018-10-311-35/+42
|
* Simplify find_all_refs by always resolving a ast::BindPatJeremy A. Kolb2018-10-311-32/+16
|
* Add DeclarationDescriptor and ReferenceDescriptorJeremy A. Kolb2018-10-311-1/+12
| | | | | Fixes #142 Fixes #146
* Prevent panic by initializing LibrariesQueryJeremy A. Kolb2018-10-311-0/+2
|
* Merge #177bors[bot]2018-10-311-1/+1
|\ | | | | | | | | | | | | | | 177: Librariese -> Libraries r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]>
| * Fix typoJeremy A. Kolb2018-10-311-1/+1
| |
* | Move completion to ra_analysisAleksey Kladov2018-10-311-5/+5
| | | | | | | | | | | | 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 resolve local nameAleksey Kladov2018-10-311-7/+23
| |
* | Move FnDescriptors to analyzerAleksey Kladov2018-10-311-2/+3
|/
* :arrow_up: salsaAleksey Kladov2018-10-301-2/+7
|
* Fix param numberJeremy A. Kolb2018-10-301-1/+1
|
* gc syntax treesAleksey Kladov2018-10-291-2/+3
|
* Index files in parallelAleksey Kladov2018-10-291-9/+13
|
* restore symbols filteringAleksey Kladov2018-10-251-5/+8
|
* Move input to top-levelAleksey Kladov2018-10-251-13/+14
|
* use correct file when resolving callablesAleksey Kladov2018-10-251-2/+3
|
* Improve loggingAleksey Kladov2018-10-251-0/+2
|
* Store all the data in the Salsa DatabaseAleksey Kladov2018-10-251-81/+98
|
* Complete crate:: pathsAleksey Kladov2018-10-241-1/+21
|
* simplify rootsAleksey Kladov2018-10-241-12/+13
|
* SimplifyAleksey Kladov2018-10-241-3/+3
|
* Introduce ModuleIdAleksey Kladov2018-10-231-72/+73
| | | | | | | 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-221-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | 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-201-1/+1
| | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d.
| * Fix function callsAlan Du2018-10-181-1/+1
| |
| * clippy: Fix new_ret_no_selfAlan Du2018-10-181-1/+1
| |
| * Clippy lint: single-character string constantAlan Du2018-10-181-1/+1
| |
* | make file-symbols query cancelableAleksey Kladov2018-10-201-16/+23
| |
* | mark module queries as cacelableAleksey Kladov2018-10-201-13/+13
| |
* | make more things cancelableAleksey Kladov2018-10-201-1/+1
| |