aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/impl_block.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move ids to hir_def crateAleksey Kladov2019-10-301-1/+1
|
* introduce ra_hir_defAleksey Kladov2019-10-301-1/+1
|
* remove not that useful indirectionAleksey Kladov2019-10-291-1/+1
|
* start ra_hir_def crateAleksey Kladov2019-10-291-2/+2
|
* minor cleanupAleksey Kladov2019-10-161-16/+19
|
* OptimizeuHOOCCOOHu2019-10-021-2/+6
|
* Support cfg attribute on impl blocksuHOOCCOOHu2019-10-021-4/+26
|
* Added test for check doc strings in crates.Alexander Andreev2019-09-301-0/+2
| | | | #1856
* Support `$crate` in item and expr place.uHOOCCOOHu2019-09-261-1/+4
|
* account for impls generated by macrosAleksey Kladov2019-09-181-26/+55
|
* Remove TraitItem and ImplItem in favor of AssocItemFlorian Diebold2019-09-171-22/+6
|
* fix panic when fetching genericsAleksey Kladov2019-09-121-5/+5
| | | | due to macro expansion, the root node is not always a file
* cleanup hir db importsAleksey Kladov2019-09-081-2/+2
|
* remove ast::*Kind from hirAleksey Kladov2019-08-191-4/+4
|
* migrate ra_hir to the new rowanAleksey Kladov2019-07-191-12/+12
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-041-8/+8
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* remove unneded From(..) implAleksey Kladov2019-06-111-8/+1
|
* use Source for module, part 1Aleksey Kladov2019-06-111-7/+7
|
* use Source for impl blockAleksey Kladov2019-06-111-6/+12
|
* Fix clippy::identity_conversionAlan Du2019-06-041-1/+0
|
* add AstDatabaseAleksey Kladov2019-06-021-5/+12
|
* collect impl source mapsAleksey Kladov2019-06-011-8/+1
|
* rename code_model_api -> code_modelAleksey Kladov2019-05-231-1/+1
|
* make AstId untypedAleksey Kladov2019-05-131-1/+1
|
* Handle auto traits & negative implsFlorian Diebold2019-05-111-1/+7
| | | | | We don't pass field types to Chalk yet though, so the auto trait inference won't be correct.
* Extract generic_params method to a HasGenericParams traitFlorian Diebold2019-04-141-7/+4
|
* Add Container enum to handle both kinds of container (impl/trait)Florian Diebold2019-04-141-1/+1
|
* More trait infrastructureFlorian Diebold2019-04-141-1/+2
| | | | | | | | | | - make it possible to get parent trait from method - add 'obligation' machinery for checking that a type implements a trait (and inferring facts about type variables from that) - handle type parameters of traits (to a certain degree) - improve the hacky implements check to cover enough cases to exercise the handling of traits with type parameters - basic canonicalization (will probably also be done by Chalk)
* Get substs for trait refs in impl blocksFlorian Diebold2019-04-141-14/+4
|
* make resolver privateAleksey Kladov2019-04-131-1/+1
|
* rename persistent hir database -> def databaseAleksey Kladov2019-03-231-18/+11
|
* replace todo with fixmeAleksey Kladov2019-03-231-1/+1
|
* remove lower moduleAleksey Kladov2019-03-171-2/+3
|
* rename type to type_alias in the AST as wellAleksey Kladov2019-02-251-1/+1
|
* Rename Type => TypeAliasFlorian Diebold2019-02-241-10/+6
|
* Resolve impl generic paramsFlorian Diebold2019-02-161-1/+3
|
* Add generic params to impl blocksFlorian Diebold2019-02-161-6/+10
|
* Turn ImplBlock into a copy type just containing IDsFlorian Diebold2019-02-161-20/+23
| | | | | | | 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-17/+6
|
* Some clippy cleanupskjeremy2019-02-061-1/+1
|
* Make the Resolution variants tuple variantsFlorian Diebold2019-02-011-4/+3
|
* Use new Resolver API in type inferenceFlorian Diebold2019-02-011-5/+22
|
* Implement methods to build a resolverFlorian Diebold2019-02-011-16/+29
|
* split HirDatabase apicsmoe2019-02-011-6/+14
|
* Go to Implementation for structs and enumsJeremy Kolb2019-01-301-6/+51
|
* kill DefKindcAleksey Kladov2019-01-241-32/+12
|
* remove boilerplateAleksey Kladov2019-01-241-1/+3
|
* remove DefKind::FunctionAleksey Kladov2019-01-241-4/+4
|
* Functions use new id schemeAleksey Kladov2019-01-241-16/+15
|
* Change ids strategyAleksey Kladov2019-01-241-15/+10
| | | | | | | 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