aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/code_model.rs
Commit message (Collapse)AuthorAgeFilesLines
* Use GenericParam in ScopeDefAleksey Kladov2019-11-211-1/+1
|
* Move ScopeDefAleksey Kladov2019-11-211-1/+25
|
* DecoupleAleksey Kladov2019-11-211-1/+1
|
* Decouple ResolverAleksey Kladov2019-11-211-11/+7
|
* SimplifyAleksey Kladov2019-11-201-8/+9
|
* Add HasResolver traitAleksey Kladov2019-11-201-104/+2
|
* Remove hir/adt.rsAleksey Kladov2019-11-201-1/+41
|
* Simplify generic paramsAleksey Kladov2019-11-201-17/+6
|
* Move constants to new IDAleksey Kladov2019-11-201-10/+15
| | | | This allows us to get rid of trait item index
* Don't duplicate ContainerId typeAleksey Kladov2019-11-201-8/+8
|
* Switch type aliases to new sourcesAleksey Kladov2019-11-201-12/+16
|
* Next gen IDs for functionsAleksey Kladov2019-11-201-10/+15
| | | | | | | | | | | | | | | | | The current system with AstIds has two primaraly drawbacks: * It is possible to manufacture IDs out of thin air. For example, it's possible to create IDs for items which are not considered in CrateDefMap due to cfg. Or it is possible to mixup structs and unions, because they share ID space. * Getting the ID of a parent requires a secondary index. Instead, the plan is to pursue the more traditional approach, where each items stores the id of the parent declaration. This makes `FromSource` more awkward, but also more correct: now, to get from an AST to HIR, we first do this recursively for the parent item, and the just search the children of the parent for the matching def
* Move traits to hir_defAleksey Kladov2019-11-201-20/+12
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-201-7/+7
|
* Remove old impls infrastructureAleksey Kladov2019-11-151-14/+11
|
* Flatten expr moduleAleksey Kladov2019-11-151-1/+1
|
* Refactor Module::from_source to properly descend from root fileAleksey Kladov2019-11-151-1/+1
|
* Move body queries to hir_defAleksey Kladov2019-11-141-9/+19
|
* Minor cleanupAleksey Kladov2019-11-121-5/+5
|
* Introduce hir::GenericParamAleksey Kladov2019-11-111-1/+7
| | | | Unlike existing hir::GenericParams, this is a global ID.
* Add hir::LocalAleksey Kladov2019-11-111-2/+53
|
* Unfork struct and union idsAleksey Kladov2019-11-091-6/+6
|
* Merge #2179bors[bot]2019-11-061-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | 2179: Use HirDatabase to compute `is_deprecated` r=matklad a=martskins This PR fixes #2167 by introducing `attributes_query` and adding `fn attrs(&self, def: crate::AttrDef) -> Option<Arc<[Attr]>>;` to the `DefDatabase` trait. I'm a little concerned about the two spots in `attributes_query` where code is repeated, but I couldn't figure out a way to avoid that, so.. I welcome suggestions :smile: Co-authored-by: Martin Asquino <[email protected]>
| * HirDatabase stored attributesMartin Asquino2019-11-041-0/+1
| |
* | Move Namespace enum closer to usageAleksey Kladov2019-11-041-2/+2
|/
* Remove last traces of nameres from hirAleksey Kladov2019-11-031-2/+1
|
* Move CrateDefMap to hir_defAleksey Kladov2019-11-031-16/+21
|
* Move diagnostics to hir_expandAleksey Kladov2019-11-021-2/+4
|
* Refactor to unify with method resolutionFlorian Diebold2019-11-011-0/+9
|
* move struct & enum data to hir_defAleksey Kladov2019-10-311-11/+20
|
* add ModuleDefId to hir_defAleksey Kladov2019-10-311-3/+3
|
* move builtin types to hir_defAleksey Kladov2019-10-311-44/+4
|
* push name down to hir_expandAleksey Kladov2019-10-301-4/+4
|
* remove forward pointer for type_refAleksey Kladov2019-10-301-2/+1
|
* remove forward pointer for nameAleksey Kladov2019-10-301-9/+9
|
* move raw_items to hir_defAleksey Kladov2019-10-301-27/+3
|
* Move ids to hir_def crateAleksey Kladov2019-10-301-8/+8
|
* introduce ra_hir_defAleksey Kladov2019-10-301-36/+41
|
* remove one more dependency on source rootsAleksey Kladov2019-10-141-5/+3
|
* add `module` methodsEkaterina Babshukova2019-10-091-0/+32
|
* Address comments: fix docs, add completion test for `Self`.ice10002019-10-081-1/+1
|
* Support inferring `Self` type in enum definitionsice10002019-10-081-2/+2
| | | | Signed-off-by: ice1000 <[email protected]>
* Added test for check doc strings in crates.Alexander Andreev2019-09-301-0/+2
| | | | #1856
* Add SubstsBuilderFlorian Diebold2019-09-261-3/+11
| | | | + further refactoring.
* Resolve trait associated itemsFlorian Diebold2019-09-251-0/+10
| | | | E.g. `Default::default` or `<Foo as Default>::default`.
* Remove redundant clone()Shotaro Yamada2019-09-251-1/+1
|
* Give closures typesFlorian Diebold2019-09-241-0/+20
|
* Drive by lintskjeremy2019-09-231-1/+1
|
* introduce FromSource traitEkaterina Babshukova2019-09-191-1/+1
|
* Remove TraitItem and ImplItem in favor of AssocItemFlorian Diebold2019-09-171-24/+9
|