Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed remaining references to `AnalysisChange` (now: `Change`) | Vincent Esche | 2021-02-28 | 1 | -1/+1 |
| | | | | (The type was renamed/moved in 8716c4cec3a05ba891b20b5f28df69d925b913ad) | ||||
* | Use `cfg(target_arch)` instead of a Cargo feature | Jonas Schievink | 2021-02-16 | 1 | -1/+1 |
| | | | | Not that WASM works right now anyways... | ||||
* | Add name resolution query for block expressions | Jonas Schievink | 2021-01-21 | 1 | -0/+1 |
| | |||||
* | Proper handling $crate Take 2 | Edwin Cheng | 2021-01-07 | 1 | -0/+1 |
| | |||||
* | Remove `module_lang_items` | Jonas Schievink | 2020-12-16 | 1 | -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 query | Lukas Wirth | 2020-12-07 | 1 | -1/+0 |
| | |||||
* | Rename `parse_macro` to `parse_macro_expansion` | Jonas Schievink | 2020-11-24 | 1 | -2/+2 |
| | | | | This does not parse macros, it expands a macro and parses the *result* | ||||
* | Move ide::AnalysisChange -> base_db::Change | Aleksey Kladov | 2020-10-02 | 1 | -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. |