Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Split `infer` query into two for better profiling | Michal Terepeta | 2020-01-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the same change as we did with `crate_def_map` and it does seem that we mostly spend time in salsa, without recomputing much on rust-analyzer side. Example output: ``` 233ms - handle_inlay_hints 163ms - get_inlay_hints 163ms - SourceAnalyzer::new 67ms - def_with_body_from_child_node 67ms - analyze_container 67ms - analyze_container 67ms - Module::from_definition 67ms - Module::from_file 67ms - crate_def_map 0ms - parse_macro_query (6 calls) 0ms - raw_items_query (1 calls) 66ms - ??? 0ms - crate_def_map (1 calls) 0ms - crate_def_map (1 calls) 96ms - infer 2ms - trait_solve_query (2 calls) 94ms - ??? 0ms - body_with_source_map_query (1 calls) 0ms - crate_def_map (1 calls) [...] ``` Signed-off-by: Michal Terepeta <[email protected]> | ||||
* | Omit closure parameters | Kirill Bulatov | 2019-12-23 | 1 | -11/+20 |
| | |||||
* | Clippy lints | kjeremy | 2019-12-20 | 1 | -1/+1 |
| | |||||
* | Rename ContainerId -> AssocContainerId | Aleksey Kladov | 2019-12-20 | 1 | -4/+4 |
| | |||||
* | Omit default parameter types | Kirill Bulatov | 2019-12-19 | 1 | -1/+32 |
| | |||||
* | Reformat | Aleksey Kladov | 2019-12-07 | 1 | -2/+2 |
| | |||||
* | Refactor parameter count tracking | Aleksey Kladov | 2019-12-07 | 1 | -5/+5 |
| | |||||
* | Remove idx and parent generics from generics | Aleksey Kladov | 2019-12-07 | 1 | -21/+11 |
| | | | | | This makes `hir_def::GenericParams` flatter. The logic for re-numbering the params is moved to hir instead. | ||||
* | Handle cycles in impl types better | Florian Diebold | 2019-11-30 | 1 | -15/+0 |
| | | | | | | - impl Trait<Self> for S is allowed - impl Trait for S<Self> is an invalid cycle, but we can add cycle recovery for it in Salsa now | ||||
* | Use Name::missing consistently | Aleksey Kladov | 2019-11-27 | 1 | -18/+7 |
| | |||||
* | Memoize impl resolutions | Aleksey Kladov | 2019-11-27 | 1 | -0/+15 |
| | |||||
* | Move Ty | Aleksey Kladov | 2019-11-27 | 1 | -2/+1132 |
| | |||||
* | Doc primitives | Aleksey Kladov | 2019-11-26 | 1 | -1/+2 |
| | |||||
* | Introduce hir_ty | Aleksey Kladov | 2019-11-26 | 1 | -0/+3 |