aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* switch to released id-arenaAleksey Kladov2018-11-284-13/+4
|
* drop commentAleksey Kladov2018-11-281-1/+0
|
* remove useless test hooksAleksey Kladov2018-11-281-43/+0
|
* make a bunch of stuff privateAleksey Kladov2018-11-282-11/+9
|
* Move hir tests to hitAleksey Kladov2018-11-287-142/+330
|
* Move hir to a separate crateAleksey Kladov2018-11-2825-2431/+201
|
* introduce hir crateAleksey Kladov2018-11-2813-17/+2254
|
* move ids to HIRAleksey Kladov2018-11-2810-80/+71
|
* move db basics to ra_dbAleksey Kladov2018-11-2821-293/+336
| | | | This should allow to move hir to a separate crate
* generalize location internerAleksey Kladov2018-11-278-50/+100
|
* rename file_syntax -> source_fileAleksey Kladov2018-11-276-18/+18
|
* introduce SymbolsDatabaseAleksey Kladov2018-11-274-27/+40
|
* remove syntax ptrAleksey Kladov2018-11-272-26/+1
|
* Use ItemPtr for idAleksey Kladov2018-11-274-18/+12
|
* ItemId based module sourceAleksey Kladov2018-11-273-20/+23
|
* Introduce SourceItemIdAleksey Kladov2018-11-275-17/+24
|
* renameAleksey Kladov2018-11-276-26/+26
|
* Move FileItems upAleksey Kladov2018-11-274-37/+43
|
* Remove unused dead codeAleksey Kladov2018-11-271-1/+0
|
* check_canceled is a methodAleksey Kladov2018-11-274-15/+9
|
* drop descriptor suffix, use hir:: insteadAleksey Kladov2018-11-274-20/+19
|
* rename ModuleDescriptor -> ModuleAleksey Kladov2018-11-275-35/+34
|
* move resolve_local to ScopesAleksey Kladov2018-11-276-109/+105
|
* rename FnDescriptior -> FnSignatureInfoAleksey Kladov2018-11-274-15/+21
|
* move resolve_local_scopeAleksey Kladov2018-11-276-27/+27
|
* make module module privateAleksey Kladov2018-11-275-9/+8
|
* move query definitionsAleksey Kladov2018-11-2710-199/+232
|
* remove underscoresAleksey Kladov2018-11-275-22/+22
|
* move hir dbAleksey Kladov2018-11-273-66/+78
|
* itroduce FunctionDescriptorAleksey Kladov2018-11-273-9/+36
|
* rename descriptorsdb -> hirdbAleksey Kladov2018-11-277-33/+30
|
* start descriptors -> hir renameAleksey Kladov2018-11-2714-27/+34
|
* resolve_path works with DefIdsAleksey Kladov2018-11-273-11/+46
|
* use ctryAleksey Kladov2018-11-274-22/+13
|
* scope-based resolve pathAleksey Kladov2018-11-273-21/+53
|
* add db to resolve_pathAleksey Kladov2018-11-272-2/+2
|
* Make resolve_path cancelableAleksey Kladov2018-11-272-2/+10
|
* don't use volatile queriesAleksey Kladov2018-11-272-4/+4
| | | | | | "volatile" means "changes every time". That is, all transitive rev-deps of volatile queries will be executed every time. We actually need "dependencies".
* Make nameresolution resilient to reparsingAleksey Kladov2018-11-276-84/+139
| | | | | We now store item id's instead of local syntax ptrs, and item ids don't change if you type inside a single function.
* implement file_itemsAleksey Kladov2018-11-271-2/+8
|
* add file items queryAleksey Kladov2018-11-273-14/+41
|
* Merge #244bors[bot]2018-11-274-49/+20
|\ | | | | | | | | | | | | | | 244: Switch to id-arena r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Switch to id-arenaAleksey Kladov2018-11-274-49/+20
| |
* | hack around nested librariesAleksey Kladov2018-11-264-3/+44
|/
* Codify Arena patternAleksey Kladov2018-11-256-78/+145
|
* switch back to the latest betaAleksey Kladov2018-11-242-3/+5
|
* add test loggin API to dbAleksey Kladov2018-11-212-1/+104
|
* Use `:` as a trigger character for completionAleksey Kladov2018-11-212-2/+24
| | | | | | | | | Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`.
* Complete paths after ::Aleksey Kladov2018-11-215-9/+5
|
* Move path completion to descriptorsAleksey Kladov2018-11-213-18/+36
|