aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db/src/apply_change.rs
Commit message (Collapse)AuthorAgeFilesLines
* Proper handling $crate Take 2Edwin Cheng2021-01-071-0/+1
|
* Remove `module_lang_items`Jonas Schievink2020-12-161-1/+0
| | | | | It isn't used anywhere except in `crate_lang_items`. Remove it to slightly reduce memory usage and simplify the code.
* Remove documentation queryLukas Wirth2020-12-071-1/+0
|
* Rename `parse_macro` to `parse_macro_expansion`Jonas Schievink2020-11-241-2/+2
| | | | This does not parse macros, it expands a macro and parses the *result*
* Move ide::AnalysisChange -> base_db::ChangeAleksey Kladov2020-10-021-0/+239
This seems like a better factoring logically; ideally, clients shouldn't touch `set_` methods of the database directly. Additionally, I think this should remove the unfortunate duplication in fixture code.