aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/code_model_impl/module.rs
Commit message (Collapse)AuthorAgeFilesLines
* add typed idsAleksey Kladov2019-03-261-10/+8
|
* store macro def inside macro idAleksey Kladov2019-03-261-1/+1
| | | | | | | | This solves the problem of "macro expansion can't call into name resolution, because name resolution calls back into macro expansion" Because we store macro def as a part of call id, macro expansion just knows the def!
* switch modules to new diagnosticsAleksey Kladov2019-03-251-17/+2
|
* rename persistent hir database -> def databaseAleksey Kladov2019-03-231-9/+6
|
* rename ModuleId -> CrateModuleIdAleksey Kladov2019-03-171-2/+2
|
* Reorganize name resolutionAleksey Kladov2019-03-171-2/+1
|
* remove lower moduleAleksey Kladov2019-03-171-2/+2
|
* Replace module_tree with CrateDefMapAleksey Kladov2019-03-171-31/+66
|
* align lower module query namesAleksey Kladov2019-03-021-1/+1
|
* Turn ImplBlock into a copy type just containing IDsFlorian Diebold2019-02-161-17/+5
| | | | | | | This makes it more like the other code model types. Also make Module::definition_source/declaration_source return HirFileIds, to make them more like the other source functions.
* reformat the worldAleksey Kladov2019-02-081-8/+2
|
* split HirDatabase apicsmoe2019-02-011-5/+11
|
* Use Crate instead of CrateIdAleksey Kladov2019-01-301-5/+1
|
* Go to Implementation for structs and enumsJeremy Kolb2019-01-301-1/+12
|
* remove Option<SourceFileItemId> hackAleksey Kladov2019-01-261-5/+5
|
* simplifyAleksey Kladov2019-01-251-9/+3
|
* remove useless wrapperAleksey Kladov2019-01-251-5/+0
|
* write path resolution code only onceAleksey Kladov2019-01-251-60/+3
|
* Migrate trait & type to new idsAleksey Kladov2019-01-241-6/+1
|
* move consts&statics to new idAleksey Kladov2019-01-241-1/+5
|
* move enum variant to the new APIAleksey Kladov2019-01-241-2/+2
|
* migrate enums to new idAleksey Kladov2019-01-241-24/+18
|
* new struct idAleksey Kladov2019-01-241-1/+1
|
* Functions use new id schemeAleksey Kladov2019-01-241-0/+1
|
* Change ids strategyAleksey Kladov2019-01-241-106/+74
| | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids
* fix completion bugsgfreezy2019-01-231-0/+4
|
* Make Module impl methods crate-private, update some commentsFlorian Diebold2019-01-191-6/+9
|
* Add AST/HIR for type args in path segmentsFlorian Diebold2019-01-191-4/+6
|
* Refactor/simplify path resolutionFlorian Diebold2019-01-191-31/+33
|
* rename LoweredImport -> ImportIdAleksey Kladov2019-01-191-2/+2
|
* switched to lowerd moduleAleksey Kladov2019-01-191-3/+14
|
* hir is cancelation freeAleksey Kladov2019-01-151-6/+3
|
* remove Cancelable from nameresAleksey Kladov2019-01-151-19/+14
|
* remove Cancelable from navigation targetAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from adt APIAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from Module API, part 2Aleksey Kladov2019-01-151-17/+13
|
* remove Cancelable from Module APIAleksey Kladov2019-01-151-11/+8
|
* remove Cancelable from source bindersAleksey Kladov2019-01-151-9/+12
|
* remove Cancelable from module_tree_queryAleksey Kladov2019-01-151-8/+8
|
* Implement basic inherent method resolutionFlorian Diebold2019-01-121-0/+15
|
* rename TreePtr -> TreeArcAleksey Kladov2019-01-111-3/+3
| | | | This is much clearer about the semantics
* Save variant names in EnumData to reduce needless queriesMarcus Klaas de Vries2019-01-101-14/+4
| | | | | | We already have their names when anyway, and when in all (current) situations where we're interested in an Enum's variants, we want their names.
* Implement type inference for enum variantsMarcus Klaas de Vries2019-01-101-2/+36
|
* Fix typo defenition -> definitionMarcus Klaas de Vries2019-01-081-1/+1
|
* dont reexport module idAleksey Kladov2019-01-081-1/+2
|
* migrate ra_hir to rowan 2.0Aleksey Kladov2019-01-081-8/+10
|
* kill module sourceAleksey Kladov2019-01-061-3/+3
|
* flatten module structureAleksey Kladov2019-01-061-0/+154