aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/adt.rs
Commit message (Collapse)AuthorAgeFilesLines
* rename flavor to kindAleksey Kladov2019-04-021-14/+14
|
* rename persistent hir database -> def databaseAleksey Kladov2019-03-231-11/+8
|
* Remove `TypeRef` from item opts which implement TypeAscriptionOwnerVille Penttinen2019-02-271-2/+2
|
* reformat the worldAleksey Kladov2019-02-081-15/+8
|
* split HirDatabase apicsmoe2019-02-011-8/+11
|
* add ability to get strcut field sourceAleksey Kladov2019-01-251-4/+66
|
* reduce visibilityAleksey Kladov2019-01-251-10/+3
|
* use positional ids for fieldsAleksey Kladov2019-01-251-54/+41
|
* rename struct field -> struct field dataAleksey Kladov2019-01-251-6/+6
|
* pack enum variants into arenaAleksey Kladov2019-01-251-49/+26
|
* switch to positional enum variantsAleksey Kladov2019-01-251-18/+36
|
* move adt to adtAleksey Kladov2019-01-241-4/+19
|
* remove boilerplateAleksey Kladov2019-01-241-42/+12
|
* move enum variant to the new APIAleksey Kladov2019-01-241-45/+19
|
* remove useless aliasesAleksey Kladov2019-01-241-5/+5
|
* migrate enums to new idAleksey Kladov2019-01-241-21/+33
|
* new struct idAleksey Kladov2019-01-241-11/+15
|
* Change ids strategyAleksey Kladov2019-01-241-1/+1
| | | | | | | 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
* Implement beginnings of genericsFlorian Diebold2019-01-191-1/+4
| | | | | | | - add HIR for generic params - resolve generic params in type paths - add substitions for ADTs - insert type variables for substitutions
* remove Cancelable from TyAleksey Kladov2019-01-151-3/+2
|
* remove Cancelable from adt APIAleksey Kladov2019-01-151-16/+7
|
* Save variant names in EnumData to reduce needless queriesMarcus Klaas de Vries2019-01-101-14/+15
| | | | | | 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-20/+85
|
* show field types in completionAleksey Kladov2019-01-091-3/+52
|
* minimize visibilityAleksey Kladov2019-01-081-1/+1
|
* move query impls to adtAleksey Kladov2019-01-081-4/+28
|
* move variant public api to apiAleksey Kladov2019-01-081-34/+1
|
* move variants to APIAleksey Kladov2019-01-081-27/+3
|
* move enum to code_model_apiAleksey Kladov2019-01-081-25/+3
|
* move stuct to code_model_apiAleksey Kladov2019-01-081-20/+4
|
* convert some if-lets to matchAleksey Kladov2019-01-081-12/+9
|
* migrate ra_hir to rowan 2.0Aleksey Kladov2019-01-081-2/+2
|
* move more stuff to idsAleksey Kladov2019-01-011-1/+2
|
* nameify structs&enumsAleksey Kladov2018-12-281-24/+19
|
* completion for enum variantsAleksey Kladov2018-12-281-0/+4
|
* Resolve field types lazilyFlorian Diebold2018-12-251-42/+29
| | | | I.e. not already when getting the HIR for the struct.
* Add a hir::TypeRef as an intermediate between ast::TypeRef and ty::TyFlorian Diebold2018-12-251-2/+2
|
* Handle structs/enums with missing names a bit betterFlorian Diebold2018-12-251-14/+8
|
* Implement basic completion for fieldsFlorian Diebold2018-12-251-1/+13
|
* Type field accessesFlorian Diebold2018-12-251-0/+9
|
* Collect field data for structs/enum variantsFlorian Diebold2018-12-251-7/+62
|
* Infer result of struct literals, and recurse into their child expressionsFlorian Diebold2018-12-251-2/+25
|
* Add basic HIR and types for structs/enumsFlorian Diebold2018-12-251-0/+114