aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/code_model_api.rs
Commit message (Collapse)AuthorAgeFilesLines
* use positional ids for fieldsAleksey Kladov2019-01-251-19/+46
|
* pack enum variants into arenaAleksey Kladov2019-01-251-6/+20
|
* switch to positional enum variantsAleksey Kladov2019-01-251-6/+7
|
* simplifyAleksey Kladov2019-01-251-1/+1
|
* remove useless wrapperAleksey Kladov2019-01-251-1/+1
|
* ModuleDef is Def-freeAleksey Kladov2019-01-241-9/+2
|
* Migrate trait & type to new idsAleksey Kladov2019-01-241-21/+14
|
* move consts&statics to new idAleksey Kladov2019-01-241-19/+19
|
* generalize boilerplateAleksey Kladov2019-01-241-17/+20
|
* adapt ide_api to the new APIAleksey Kladov2019-01-241-1/+0
|
* move enum variant to the new APIAleksey Kladov2019-01-241-16/+13
|
* macro-generate fromsAleksey Kladov2019-01-241-24/+1
|
* kill unused defsAleksey Kladov2019-01-241-2/+0
|
* migrate enums to new idAleksey Kladov2019-01-241-25/+28
|
* new struct idAleksey Kladov2019-01-241-13/+20
|
* Functions use new id schemeAleksey Kladov2019-01-241-18/+21
|
* Change ids strategyAleksey Kladov2019-01-241-6/+26
| | | | | | | 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
* Add a bunch of new documentation to completionsJeremy A. Kolb2019-01-231-0/+24
|
* Add way of getting docs from the code model and use for completionJeremy A. Kolb2019-01-231-13/+24
|
* Move docs to FunctionJeremy Kolb2019-01-221-6/+15
|
* Thread documentation through FnSignature and CompletionItemJeremy Kolb2019-01-221-0/+5
|
* Generics -> GenericParamsFlorian Diebold2019-01-191-11/+11
|
* Implement beginnings of genericsFlorian Diebold2019-01-191-0/+21
| | | | | | | - add HIR for generic params - resolve generic params in type paths - add substitions for ADTs - insert type variables for substitutions
* Finish move of StructField for pattern type inferenceMarcus Klaas de Vries2019-01-191-3/+15
|
* rename LoweredImport -> ImportIdAleksey Kladov2019-01-191-2/+2
|
* switched to lowerd moduleAleksey Kladov2019-01-191-1/+10
|
* hir is cancelation freeAleksey Kladov2019-01-151-5/+2
|
* remove Cancelable from type inferenceAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from TyAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from nameresAleksey Kladov2019-01-151-2/+2
|
* remove Cancelable from fn_scopesAleksey Kladov2019-01-151-4/+4
|
* remove Cancelable from funciton bodyAleksey Kladov2019-01-151-2/+2
|
* remove Cancelable from navigation targetAleksey Kladov2019-01-151-2/+2
|
* remove Cancelable from static&const APIAleksey Kladov2019-01-151-11/+8
|
* remove Cancelable from adt APIAleksey Kladov2019-01-151-29/+21
|
* remove Cancelable from Crate APIAleksey Kladov2019-01-151-3/+3
|
* remove Cancelable from Module API, part 2Aleksey Kladov2019-01-151-7/+7
|
* remove Cancelable from Module APIAleksey Kladov2019-01-151-3/+3
|
* remove Cancelable from source bindersAleksey Kladov2019-01-151-1/+1
|
* args -> paramsFlorian Diebold2019-01-121-7/+7
|
* Implement basic inherent method resolutionFlorian Diebold2019-01-121-0/+14
|
* actually produce missing def kindsAleksey Kladov2019-01-111-0/+48
|
* uncopypaste def sourcesAleksey Kladov2019-01-111-23/+6
|
* add missing def kindsAleksey Kladov2019-01-111-0/+20
|
* rename TreePtr -> TreeArcAleksey Kladov2019-01-111-9/+9
| | | | This is much clearer about the semantics
* envapsulate navigation target betterAleksey Kladov2019-01-111-0/+2
|
* Use name resolution for goto definitionFlorian Diebold2019-01-101-4/+45
|
* Save variant names in EnumData to reduce needless queriesMarcus Klaas de Vries2019-01-101-1/+1
| | | | | | 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-1/+33
|
* show field types in completionAleksey Kladov2019-01-091-48/+19
|