aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/nameres/raw.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove raw item queryJonas Schievink2020-06-241-483/+0
|
* collector changes WIPJonas Schievink2020-06-241-0/+1
|
* Pass trivially copy types as copykjeremy2020-05-261-1/+1
|
* Switch to new magic marksAleksey Kladov2020-05-201-2/+2
|
* Favor types for Record in name resolutionEdwin Cheng2020-05-041-3/+15
|
* Make AttrQuery copyableEdwin Cheng2020-05-011-10/+14
|
* Support local_inner_macrosEdwin Cheng2020-05-011-6/+21
|
* Record definitions in `extern` blocksJonas Schievink2020-04-231-2/+30
|
* Semicolon tokenAleksey Kladov2020-04-101-1/+1
|
* Be consistent about token accesorsAleksey Kladov2020-04-091-1/+1
|
* Provide more complete AST accessors to support usage in rustcLuca Barbieri2020-04-091-0/+4
|
* Get rid of ItemOrMacroAleksey Kladov2020-03-261-5/+6
|
* Simplify Arena to use a generic indexAleksey Kladov2020-03-191-45/+43
|
* Use `dyn Trait` for working with databseAleksey Kladov2020-03-161-6/+2
| | | | | | | 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).
* Rename ast::ImplBlock -> ast::ImplDefAleksey Kladov2020-02-291-3/+3
|
* Run cargo +nightly fix --clippy -Z unstable-optionsKirill Bulatov2020-02-181-3/+1
|
* include requested changeszombiefungus2020-02-021-12/+8
|
* add new ImportAlias enum to differentiate no alias from an _ aliaszombiefungus2020-02-021-2/+13
|
* Rename Visibility -> RawVisibilityFlorian Diebold2019-12-261-9/+9
|
* Handle privacy for modulesFlorian Diebold2019-12-261-3/+15
|
* Collect visibility of items during nameresFlorian Diebold2019-12-261-3/+14
|
* More profilingAleksey Kladov2019-12-211-0/+2
|
* Move LocalImportIdAleksey Kladov2019-12-211-7/+9
|
* Remove import source mapAleksey Kladov2019-12-211-44/+12
|
* Remove imports from hirAleksey Kladov2019-12-211-6/+0
|
* Revert "Merge #2629"Aleksey Kladov2019-12-211-16/+52
| | | | | This reverts commit cdc9d682b066b110e0a44e5f8f1c574b38c16ba9, reversing changes made to 90ef070db3dce0a7acb9cd11d0b0d72de13c9d79.
* Privatize LocalImportIDAleksey Kladov2019-12-211-3/+5
|
* Remove import source mapAleksey Kladov2019-12-211-50/+12
|
* Use different types for path with and without genericsAleksey Kladov2019-12-141-6/+6
|
* Add expansion infrastructure for derive macrosFlorian Diebold2019-12-051-0/+15
|
* Replace `ra_hir_expand::either` with crateice10002019-12-031-3/+3
|
* Rename Source -> InFileAleksey Kladov2019-11-281-3/+3
|
* Fix hir for ast::UnionDefAleksey Kladov2019-11-251-6/+7
|
* Use Trace in raw_itemsAleksey Kladov2019-11-241-10/+10
|
* Some docsAleksey Kladov2019-11-241-1/+6
|
* Slightly reduce code duplicationAleksey Kladov2019-11-241-5/+2
|
* Move ModuleSource back to hirAleksey Kladov2019-11-231-14/+4
|
* Move ImportIdAleksey Kladov2019-11-231-12/+8
|
* Get rid of DefDatabase2Aleksey Kladov2019-11-231-3/+3
|
* Encapsulate AttrsAleksey Kladov2019-11-221-11/+7
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-201-1/+1
|
* Store impls in CrateDefMapAleksey Kladov2019-11-151-2/+27
|
* Add basic bultin macro infrastructureEdwin Cheng2019-11-111-1/+6
|
* Reduce visibilityAleksey Kladov2019-11-081-9/+9
|
* Reduce visibilityAleksey Kladov2019-11-081-23/+23
|
* Restore crate_def_map marksAleksey Kladov2019-11-031-2/+2
|
* move hygiene to hir_expandAleksey Kladov2019-10-301-4/+2
|
* push name down to hir_expandAleksey Kladov2019-10-301-7/+8
|
* push either to hir_expandAleksey Kladov2019-10-301-7/+4
|
* refactor $crate handlingAleksey Kladov2019-10-301-17/+14
| | | | | Introduce proper hygiene module, which should grow quite a bit eventually.