Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reformat the world | Aleksey Kladov | 2019-02-08 | 1 | -15/+8 |
| | |||||
* | split HirDatabase api | csmoe | 2019-02-01 | 1 | -8/+11 |
| | |||||
* | add ability to get strcut field source | Aleksey Kladov | 2019-01-25 | 1 | -4/+66 |
| | |||||
* | reduce visibility | Aleksey Kladov | 2019-01-25 | 1 | -10/+3 |
| | |||||
* | use positional ids for fields | Aleksey Kladov | 2019-01-25 | 1 | -54/+41 |
| | |||||
* | rename struct field -> struct field data | Aleksey Kladov | 2019-01-25 | 1 | -6/+6 |
| | |||||
* | pack enum variants into arena | Aleksey Kladov | 2019-01-25 | 1 | -49/+26 |
| | |||||
* | switch to positional enum variants | Aleksey Kladov | 2019-01-25 | 1 | -18/+36 |
| | |||||
* | move adt to adt | Aleksey Kladov | 2019-01-24 | 1 | -4/+19 |
| | |||||
* | remove boilerplate | Aleksey Kladov | 2019-01-24 | 1 | -42/+12 |
| | |||||
* | move enum variant to the new API | Aleksey Kladov | 2019-01-24 | 1 | -45/+19 |
| | |||||
* | remove useless aliases | Aleksey Kladov | 2019-01-24 | 1 | -5/+5 |
| | |||||
* | migrate enums to new id | Aleksey Kladov | 2019-01-24 | 1 | -21/+33 |
| | |||||
* | new struct id | Aleksey Kladov | 2019-01-24 | 1 | -11/+15 |
| | |||||
* | Change ids strategy | Aleksey Kladov | 2019-01-24 | 1 | -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 generics | Florian Diebold | 2019-01-19 | 1 | -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 Ty | Aleksey Kladov | 2019-01-15 | 1 | -3/+2 |
| | |||||
* | remove Cancelable from adt API | Aleksey Kladov | 2019-01-15 | 1 | -16/+7 |
| | |||||
* | Save variant names in EnumData to reduce needless queries | Marcus Klaas de Vries | 2019-01-10 | 1 | -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 variants | Marcus Klaas de Vries | 2019-01-10 | 1 | -20/+85 |
| | |||||
* | show field types in completion | Aleksey Kladov | 2019-01-09 | 1 | -3/+52 |
| | |||||
* | minimize visibility | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | move query impls to adt | Aleksey Kladov | 2019-01-08 | 1 | -4/+28 |
| | |||||
* | move variant public api to api | Aleksey Kladov | 2019-01-08 | 1 | -34/+1 |
| | |||||
* | move variants to API | Aleksey Kladov | 2019-01-08 | 1 | -27/+3 |
| | |||||
* | move enum to code_model_api | Aleksey Kladov | 2019-01-08 | 1 | -25/+3 |
| | |||||
* | move stuct to code_model_api | Aleksey Kladov | 2019-01-08 | 1 | -20/+4 |
| | |||||
* | convert some if-lets to match | Aleksey Kladov | 2019-01-08 | 1 | -12/+9 |
| | |||||
* | migrate ra_hir to rowan 2.0 | Aleksey Kladov | 2019-01-08 | 1 | -2/+2 |
| | |||||
* | move more stuff to ids | Aleksey Kladov | 2019-01-01 | 1 | -1/+2 |
| | |||||
* | nameify structs&enums | Aleksey Kladov | 2018-12-28 | 1 | -24/+19 |
| | |||||
* | completion for enum variants | Aleksey Kladov | 2018-12-28 | 1 | -0/+4 |
| | |||||
* | Resolve field types lazily | Florian Diebold | 2018-12-25 | 1 | -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::Ty | Florian Diebold | 2018-12-25 | 1 | -2/+2 |
| | |||||
* | Handle structs/enums with missing names a bit better | Florian Diebold | 2018-12-25 | 1 | -14/+8 |
| | |||||
* | Implement basic completion for fields | Florian Diebold | 2018-12-25 | 1 | -1/+13 |
| | |||||
* | Type field accesses | Florian Diebold | 2018-12-25 | 1 | -0/+9 |
| | |||||
* | Collect field data for structs/enum variants | Florian Diebold | 2018-12-25 | 1 | -7/+62 |
| | |||||
* | Infer result of struct literals, and recurse into their child expressions | Florian Diebold | 2018-12-25 | 1 | -2/+25 |
| | |||||
* | Add basic HIR and types for structs/enums | Florian Diebold | 2018-12-25 | 1 | -0/+114 |