aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/adt.rs
Commit message (Collapse)AuthorAgeFilesLines
* Use `dyn Trait` for working with databseAleksey Kladov2020-03-161-8/+8
| | | | | | | It improves compile time in `--release` mode quite a bit, it doesn't really slow things down and, conceptually, it seems closer to what we want the physical architecture to look like (we don't want to monomorphise EVERYTHING in a single leaf crate).
* Fix handling of const patternsFlorian Diebold2020-02-211-0/+1
| | | | | | | | | E.g. in `match x { None => ... }`, `None` is a path pattern (resolving to the option variant), not a binding. To determine this, we need to try to resolve the name during lowering. This isn't too hard since we already need to resolve names for macro expansion anyway (though maybe a bit hacky). Fixes #1618.
* replace uses of VariantData::is_unit with VariantData::kindadamrk2020-02-161-6/+0
|
* show names for record fields in enum completionadamrk2020-02-161-1/+8
|
* Remove visibility query, instead add struct field visibility to dataFlorian Diebold2019-12-261-18/+26
| | | | | Methods should be handled the same, and for items the visibility will be in the def map.
* More profilingAleksey Kladov2019-12-211-0/+2
|
* Move enum&union to new locAleksey Kladov2019-12-121-7/+6
|
* Move structs to new locAleksey Kladov2019-12-121-4/+5
|
* Replace `ra_hir_expand::either` with crateice10002019-12-031-3/+3
|
* Move source-related traits to a separate moduleAleksey Kladov2019-11-281-1/+1
|
* Rename Source -> InFileAleksey Kladov2019-11-281-3/+3
|
* Use Name::missing consistentlyAleksey Kladov2019-11-271-9/+9
|
* Id-ify Ty::AdtAleksey Kladov2019-11-261-0/+4
|
* Fixme for union fieldsAleksey Kladov2019-11-251-0/+5
|
* Fix hir for ast::UnionDefAleksey Kladov2019-11-251-3/+15
|
* Simplify ADT fieldsAleksey Kladov2019-11-241-3/+11
|
* Use Trace in raw_itemsAleksey Kladov2019-11-241-3/+3
|
* Get rid of DefDatabase2Aleksey Kladov2019-11-231-8/+5
|
* More principled sources for enums and fieldsAleksey Kladov2019-11-221-39/+106
|
* Uniformalize namingAleksey Kladov2019-11-221-15/+10
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-201-4/+4
|
* Unfork struct and union idsAleksey Kladov2019-11-091-10/+6
|
* Move CrateDefMap to hir_defAleksey Kladov2019-11-031-1/+13
|
* move struct & enum data to hir_defAleksey Kladov2019-10-311-0/+114