-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
⬆️ rust-analyzer #102053
⬆️ rust-analyzer #102053
Commits on Aug 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f9e2ac5 - Browse repository at this point
Copy the full SHA f9e2ac5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 484d5b6 - Browse repository at this point
Copy the full SHA 484d5b6View commit details
Commits on Sep 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 29729ab - Browse repository at this point
Copy the full SHA 29729abView commit details -
Update crates/ide/src/references.rs
Co-authored-by: Laurențiu Nicola <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ba40aa7 - Browse repository at this point
Copy the full SHA ba40aa7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6001e7d - Browse repository at this point
Copy the full SHA 6001e7dView commit details
Commits on Sep 7, 2022
-
Update crates/ide/src/references.rs
Co-authored-by: Lukas Wirth <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bd0eeb3 - Browse repository at this point
Copy the full SHA bd0eeb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 92d54f9 - Browse repository at this point
Copy the full SHA 92d54f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for eba54c2 - Browse repository at this point
Copy the full SHA eba54c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f6553e - Browse repository at this point
Copy the full SHA 9f6553eView commit details
Commits on Sep 8, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 1764c42 - Browse repository at this point
Copy the full SHA 1764c42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0240294 - Browse repository at this point
Copy the full SHA 0240294View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab0b64b - Browse repository at this point
Copy the full SHA ab0b64bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 773f9b3 - Browse repository at this point
Copy the full SHA 773f9b3View commit details
Commits on Sep 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f7f4792 - Browse repository at this point
Copy the full SHA f7f4792View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d19971 - Browse repository at this point
Copy the full SHA 7d19971View commit details
Commits on Sep 10, 2022
-
Remove the toggleInlayHints command from VSCode
Inlay hints are no longer something specifc to r-a as it has been upstreamed into the LSP, we don't have a reason to give the config for this feature special treatment in regards to toggling. There are plenty of other options out there in the VSCode marketplace to create toggle commands/hotkeys for configurations in general which I believe we should nudge people towards instead.
Configuration menu - View commit details
-
Copy full SHA for 9c97997 - Browse repository at this point
Copy the full SHA 9c97997View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2584d48 - Browse repository at this point
Copy the full SHA 2584d48View commit details -
new lint: move_format_string_arg
The name might need some improving. extract format_like's parser to it's own module in ide-db reworked the parser's API to be more direct added assist to extract expressions in format args
Configuration menu - View commit details
-
Copy full SHA for cc72008 - Browse repository at this point
Copy the full SHA cc72008View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5cbee4 - Browse repository at this point
Copy the full SHA a5cbee4View commit details
Commits on Sep 11, 2022
-
suggest ExtractRefactor if no expressions found
Added `Ident` variant to arg enum.
Configuration menu - View commit details
-
Copy full SHA for fb5ae99 - Browse repository at this point
Copy the full SHA fb5ae99View commit details
Commits on Sep 12, 2022
-
Allow configuration of annotation location.
Previously, annotations would only appear above the name of an item (function signature, struct declaration, etc). Now, rust-analyzer can be configured to show annotations either above the name or above the whole item (including doc comments and attributes).
Configuration menu - View commit details
-
Copy full SHA for 8a2803d - Browse repository at this point
Copy the full SHA 8a2803dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32603ba - Browse repository at this point
Copy the full SHA 32603baView commit details -
Auto merge of rust-lang#13222 - BorysMinaiev:master, r=flodiebold
Remove redundant 'resolve_obligations_as_possible' call Hi! I was looking for a "good first issue" and saw this one: rust-lang/rust-analyzer#7542. I like searching for performance improvements, so I wanted to try to find something useful there. There are two tests in integrated_benchmarks.rs, I looked at 'integrated_highlighting_benchmark' (not the one discussed in the issue above). Profile from that test looks like this: ``` $ RUN_SLOW_BENCHES=1 cargo test --release --package rust-analyzer --lib -- integrated_benchmarks::integrated_highlighting_benchmark --exact --nocapture Finished release [optimized] target(s) in 0.06s Running unittests src/lib.rs (target/release/deps/rust_analyzer-a80ca6bb8f877458) running 1 test workspace loading: 358.45ms initial: 9.60s change: 13.96µs cpu profiling is disabled, uncomment `default = [ "cpu_profiler" ]` in Cargo.toml to enable. 273ms - highlight 143ms - infer:wait @ per_query_memory_usage 143ms - infer_query 0 - crate_def_map:wait (3165 calls) 4ms - deref_by_trait (967 calls) 96ms - resolve_obligations_as_possible (22106 calls) 0 - trait_solve::wait (2068 calls) 21ms - Semantics::analyze_impl (18 calls) 0 - SourceBinder::to_module_def (20 calls) 36ms - classify_name (19 calls) 19ms - classify_name_ref (308 calls) 0 - crate_def_map:wait (461 calls) 4ms - descend_into_macros (628 calls) 0 - generic_params_query (4 calls) 0 - impl_data_with_diagnostics_query (1 calls) 45ms - infer:wait (37 calls) 0 - resolve_obligations_as_possible (2 calls) 0 - source_file_to_def (1 calls) 0 - trait_solve::wait (42 calls) after change: 275.23ms test integrated_benchmarks::integrated_highlighting_benchmark ... ok ``` 22106 calls to `resolve_obligations_as_possible` seem like the main issue there. One thing I noticed (and fixed in this PR) is that `InferenceContext::resolve_ty_shallow` first calls `resolve_obligations_as_possible`, and then calls `InferenceTable::resolve_ty_shallow`. But `InferenceTable::resolve_ty_shallow` [inside](https://github.com/rust-lang/rust-analyzer/blob/2e9f1204ca01c3e20898d4a67c8b84899d394a88/crates/hir-ty/src/infer/unify.rs#L372) again calls `resolve_obligations_as_possible`. `resolve_obligations_as_possible` inside has a while loop, which works until it can't find any helpful information. So calling this function for the second time does nothing, so one of the calls could be safely removed. `InferenceContext::resolve_ty_shallow` is actually quite a hot place, and after fixing it, the total number of `resolve_obligations_as_possible` in this test is reduced to 15516 (from 22106). "After change" time also improves from ~270ms to ~240ms, which is not a very huge win, but still something measurable. Same profile after PR: ``` $ RUN_SLOW_BENCHES=1 cargo test --release --package rust-analyzer --lib -- integrated_benchmarks::integrated_highlighting_benchmark --exact --nocapture Finished release [optimized] target(s) in 0.06s Running unittests src/lib.rs (target/release/deps/rust_analyzer-a80ca6bb8f877458) running 1 test workspace loading: 339.86ms initial: 9.28s change: 10.69µs cpu profiling is disabled, uncomment `default = [ "cpu_profiler" ]` in Cargo.toml to enable. 236ms - highlight 110ms - infer:wait @ per_query_memory_usage 110ms - infer_query 0 - crate_def_map:wait (3165 calls) 4ms - deref_by_trait (967 calls) 64ms - resolve_obligations_as_possible (15516 calls) 0 - trait_solve::wait (2068 calls) 21ms - Semantics::analyze_impl (18 calls) 0 - SourceBinder::to_module_def (20 calls) 34ms - classify_name (19 calls) 18ms - classify_name_ref (308 calls) 0 - crate_def_map:wait (461 calls) 3ms - descend_into_macros (628 calls) 0 - generic_params_query (4 calls) 0 - impl_data_with_diagnostics_query (1 calls) 45ms - infer:wait (37 calls) 0 - resolve_obligations_as_possible (2 calls) 0 - source_file_to_def (1 calls) 0 - trait_solve::wait (42 calls) after change: 238.15ms test integrated_benchmarks::integrated_highlighting_benchmark ... ok ``` The performance of this test could be further improved but at the cost of making code more complicated, so I wanted to check if such a change is desirable before sending another PR. `resolve_obligations_as_possible` is actually called a lot of times even when no new information was provided. As I understand, `resolve_obligations_as_possible` could do something useful only if some variables/values were unified since the last check. We can store a boolean variable inside `InferenceTable`, which indicates if `try_unify` was called after last `resolve_obligations_as_possible`. If it wasn't called, we can safely not call `resolve_obligations_as_possible` again. I tested this change locally, and it reduces the number of `resolve_obligations_as_possible` to several thousand (it is not shown in the profile anymore, so don't know the exact number), and the total time is reduced to ~180ms. Here is a generated profile: ``` $ RUN_SLOW_BENCHES=1 cargo test --release --package rust-analyzer --lib -- integrated_benchmarks::integrated_highlighting_benchmark --exact --nocapture Finished release [optimized] target(s) in 0.06s Running unittests src/lib.rs (target/release/deps/rust_analyzer-a80ca6bb8f877458) running 1 test workspace loading: 349.92ms initial: 8.56s change: 11.32µs cpu profiling is disabled, uncomment `default = [ "cpu_profiler" ]` in Cargo.toml to enable. 175ms - highlight 21ms - Semantics::analyze_impl (18 calls) 0 - SourceBinder::to_module_def (20 calls) 33ms - classify_name (19 calls) 17ms - classify_name_ref (308 calls) 0 - crate_def_map:wait (461 calls) 3ms - descend_into_macros (628 calls) 0 - generic_params_query (4 calls) 0 - impl_data_with_diagnostics_query (1 calls) 97ms - infer:wait (38 calls) 0 - resolve_obligations_as_possible (2 calls) 0 - source_file_to_def (1 calls) 0 - trait_solve::wait (42 calls) after change: 177.04ms test integrated_benchmarks::integrated_highlighting_benchmark ... ok ``` Let me know if adding a new bool field seems like a reasonable tradeoff, so I can send a PR.
Configuration menu - View commit details
-
Copy full SHA for bc13142 - Browse repository at this point
Copy the full SHA bc13142View commit details -
Auto merge of rust-lang#13212 - Veykril:no-std-config, r=Veykril
Add config to unconditionally prefer core imports over std Fixes rust-lang/rust-analyzer#12979
Configuration menu - View commit details
-
Copy full SHA for 352a5b8 - Browse repository at this point
Copy the full SHA 352a5b8View commit details -
Auto merge of rust-lang#13186 - enomado:master, r=Veykril
Filter imports on find-all-references Attempt to rust-lang#13184
Configuration menu - View commit details
-
Copy full SHA for e38dfe5 - Browse repository at this point
Copy the full SHA e38dfe5View commit details -
Auto merge of rust-lang#13147 - lowr:fix/dyn-ty-inherent-methods, r=V…
…eykril fix: handle trait methods as inherent methods for trait-related types Fixes rust-lang#10677 When resolving methods for trait object types and placeholder types that are bounded by traits, we need to count the methods of the trait and its super traits as inherent methods. This matters because these trait methods have higher priority than the other traits' methods. Relevant code in rustc: [`assemble_inherent_candidates_from_object()`](https://github.com/rust-lang/rust/blob/0631ea5d73f4a3199c776687b12c20c50a91f0d2/compiler/rustc_typeck/src/check/method/probe.rs#L783-L792) for trait object types, [`assemble_inherent_candidates_from_param()`](https://github.com/rust-lang/rust/blob/0631ea5d73f4a3199c776687b12c20c50a91f0d2/compiler/rustc_typeck/src/check/method/probe.rs#L838-L847) for placeholder types. Notice the second arg of `push_candidate()` is `is_inherent`.
Configuration menu - View commit details
-
Copy full SHA for 7a704f2 - Browse repository at this point
Copy the full SHA 7a704f2View commit details -
Update crates/ide-assists/src/handlers/move_format_string_arg.rs
Co-authored-by: Lukas Wirth <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 54e9324 - Browse repository at this point
Copy the full SHA 54e9324View commit details -
Auto merge of rust-lang#13215 - Veykril:toggle-inlay, r=Veykril
Remove the toggleInlayHints command from VSCode Inlay hints are no longer something specifc to r-a as it has been upstreamed into the LSP, we don't have a reason to give the config for this feature special treatment in regards to toggling. There are plenty of other options out there in the VSCode marketplace to create toggle commands/hotkeys for configurations in general which I believe we should nudge people towards instead.
Configuration menu - View commit details
-
Copy full SHA for b54d22d - Browse repository at this point
Copy the full SHA b54d22dView commit details -
Configuration menu - View commit details
-
Copy full SHA for efb5616 - Browse repository at this point
Copy the full SHA efb5616View commit details -
Auto merge of rust-lang#13223 - lowr:fix/hir-proj-normalization, r=fl…
…odiebold fix: handle lifetime variables in projection normalization Fixes rust-lang#12674 The problem is that we've been skipping the binders of normalized projections assuming they should be empty, but the assumption is unfortunately wrong. We may get back lifetime variables and should handle them before returning them as normalized projections. For those who are curious why we get those even though we treat all lifetimes as 'static, [this comment in chalk](https://github.com/rust-lang/chalk/blob/d875af0ff196dd6430b5f5fd87a640fa5ab59d1e/chalk-solve/src/infer/unify.rs#L888-L908) may be interesting. I thought using `InferenceTable` would be cleaner than the other ways as it already has the methods for canonicalization, normalizing projection, and resolving variables, so moved goal building and trait solving logic to a new `HirDatabase` query. I made it transparent query as the query itself doesn't do much work but the eventual call to `HirDatabase::trait_solve_query()` does.
Configuration menu - View commit details
-
Copy full SHA for b1a4ba3 - Browse repository at this point
Copy the full SHA b1a4ba3View commit details -
Auto merge of rust-lang#13216 - DesmondWillowbrook:move_format_string…
…_arg, r=DesmondWillowbrook New assist: move_format_string_arg The name might need some improving. ```rust fn main() { print!("{x + 1}"); } ``` to ```rust fn main() { print!("{}"$0, x + 1); } ``` fixes rust-lang#13180 ref to rust-lang#5988 for similar work * extracted `format_like`'s parser to it's own module in `ide-db` * reworked the parser's API to be more direct * added assist to extract expressions in format args
Configuration menu - View commit details
-
Copy full SHA for f64c956 - Browse repository at this point
Copy the full SHA f64c956View commit details -
Configuration menu - View commit details
-
Copy full SHA for d223c28 - Browse repository at this point
Copy the full SHA d223c28View commit details -
Configuration menu - View commit details
-
Copy full SHA for f57c15f - Browse repository at this point
Copy the full SHA f57c15fView commit details
Commits on Sep 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for cadb01c - Browse repository at this point
Copy the full SHA cadb01cView commit details -
Auto merge of rust-lang#13228 - Veykril:ref-import-filtering, r=Veykril
Move reference imports filtering into to_proto layer Follow up to rust-lang/rust-analyzer#13186
Configuration menu - View commit details
-
Copy full SHA for 482a992 - Browse repository at this point
Copy the full SHA 482a992View commit details -
Restructure
find_path
into a separate functions for modules and non……-module items Also renames `prefer_core` imports config to `prefer_no_std` and changes the behavior of no_std path searching by preferring `core` paths `over` alloc
Configuration menu - View commit details
-
Copy full SHA for a8ecaa1 - Browse repository at this point
Copy the full SHA a8ecaa1View commit details -
Auto merge of rust-lang#13227 - Veykril:core-pref, r=Veykril
Restructure `find_path` into a separate functions for modules and non-module items Follow up to rust-lang/rust-analyzer#13212 Also renames `prefer_core` imports config to `prefer_no_std` and changes the behavior of no_std path searching by preferring `core` paths `over` alloc This PR turned into a slight rewrite, so it unfortunately does a few more things that I initially planned to (including a bug fix for enum variant paths)
Configuration menu - View commit details
-
Copy full SHA for 125d43c - Browse repository at this point
Copy the full SHA 125d43cView commit details -
Auto merge of rust-lang#13225 - lowr:fix/hir-proj-normalization, r=Ve…
…ykril fixup: remove unnecessary `Option` Fixup for rust-lang#13223, two things: - `normalize_projection_query()` (and consequently `HirDatabase::normalize_projection()`) never returns `None` (well, it used to when I first wrote it...), so just return `Ty` instead of `Option<Ty>` - When chalk cannot normalize projection uniquely, `normalize_trait_assoc_type()` used to return `None` before rust-lang#13223, but not anymore because of the first point. I restored the behavior so its callers work as before.
Configuration menu - View commit details
-
Copy full SHA for ba15f75 - Browse repository at this point
Copy the full SHA ba15f75View commit details -
Auto merge of rust-lang#13221 - mdx97:mdx97/annotations-above-whole-i…
…tem, r=Veykril Allow configuration of annotation location. I've added the ability to configure where lens annotations render relevant to the item they describe. Previously, these would render directly above the line the item is declared on. Now, there is the ability to render these annotations above the entire item (including doc comments, and attributes). The names of the config options are up for debate, I did what seemed best to me but if anyone has better ideas let me know. This is my first contribution so if I've missed anything please let me know. Here's a preview of what the new option looks like: <img width="577" alt="Screen Shot 2022-09-11 at 10 39 51 PM" src="https://user-images.githubusercontent.com/33100798/189570298-b4fcbf9c-ee49-4b79-aae6-1037ae4f26af.png"> closes rust-lang/rust-analyzer#13218
Configuration menu - View commit details
-
Copy full SHA for dbb8fed - Browse repository at this point
Copy the full SHA dbb8fedView commit details -
Configuration menu - View commit details
-
Copy full SHA for c407cc5 - Browse repository at this point
Copy the full SHA c407cc5View commit details
Commits on Sep 14, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5e2f9e3 - Browse repository at this point
Copy the full SHA 5e2f9e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7f6d28 - Browse repository at this point
Copy the full SHA f7f6d28View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6aed79 - Browse repository at this point
Copy the full SHA b6aed79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5430554 - Browse repository at this point
Copy the full SHA 5430554View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6f0fd0 - Browse repository at this point
Copy the full SHA d6f0fd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4a87ee - Browse repository at this point
Copy the full SHA c4a87eeView commit details -
Auto merge of rust-lang#13232 - jplatte:mbe-refactor, r=Veykril
Refactor macro-by-example code I had a look at the MBE code because of rust-lang#7857. I found some easy readability wins, that might also _marginally_ improve perf.
Configuration menu - View commit details
-
Copy full SHA for 2b61be2 - Browse repository at this point
Copy the full SHA 2b61be2View commit details
Commits on Sep 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a9f103e - Browse repository at this point
Copy the full SHA a9f103eView commit details -
Auto merge of rust-lang#13235 - Veykril:prelude-handling, r=Veykril
Fix prelude injection Fixes the regression of unknown types introduced in rust-lang/rust-analyzer#13175
Configuration menu - View commit details
-
Copy full SHA for 6b163c3 - Browse repository at this point
Copy the full SHA 6b163c3View commit details
Commits on Sep 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e7abf34 - Browse repository at this point
Copy the full SHA e7abf34View commit details -
Configuration menu - View commit details
-
Copy full SHA for ad17ba1 - Browse repository at this point
Copy the full SHA ad17ba1View commit details -
Auto merge of rust-lang#13242 - Veykril:completion-alias, r=Veykril
Complete variants and assoc items in path pattern through type aliases
Configuration menu - View commit details
-
Copy full SHA for 870bfc7 - Browse repository at this point
Copy the full SHA 870bfc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b73fa0b - Browse repository at this point
Copy the full SHA b73fa0bView commit details -
Auto merge of rust-lang#13243 - Veykril:search-memchr, r=Veykril
Use memmem when searching for usages in ide-db We already have this dependency, so there is no reason not to use it as it is generally faster than std in our use case.
Configuration menu - View commit details
-
Copy full SHA for b6e3f41 - Browse repository at this point
Copy the full SHA b6e3f41View commit details -
Configuration menu - View commit details
-
Copy full SHA for a65ca20 - Browse repository at this point
Copy the full SHA a65ca20View commit details
Commits on Sep 17, 2022
-
Auto merge of rust-lang#13239 - mdx97:mathew/fix-add-reference-for-ma…
…cros, r=Veykril Fix add reference action on macros. Before we were using the range of the corresponding expression node in the macro expanded file, which is obviously incorrect as we are setting the text in the original source. For some reason, the test I added is failing and I haven't found a way to fix it. Does anyone know why `check_fix` wouldn't work with macros? Getting this error: ```text thread 'handlers::type_mismatch::tests::test_add_reference_to_macro_call' panicked at 'no diagnostics', crates/ide-diagnostics/src/handlers/type_mismatch.rs:317:9 ``` closes rust-lang#13219
Configuration menu - View commit details
-
Copy full SHA for 932e63b - Browse repository at this point
Copy the full SHA 932e63bView commit details
Commits on Sep 18, 2022
-
Auto merge of rust-lang#13058 - dpaoliello:extraenv, r=Veykril
Add a new configuration settings to set env vars when running cargo, rustc, etc. commands: cargo.extraEnv and checkOnSave.extraEnv It can be extremely useful to be able to set environment variables when rust-analyzer is running various cargo or rustc commands (such as `cargo check`, `cargo --print cfg` or `cargo metadata`): users may want to set custom `RUSTFLAGS`, change `PATH` to use a custom toolchain or set a different `CARGO_HOME`. There is the existing `server.extraEnv` setting that allows env vars to be set when the rust-analyzer server is launched, but using this as the recommended mechanism to also configure cargo/rust has some drawbacks: - It convolutes configuring the rust-analyzer server with configuring cargo/rustc (one may want to change the `PATH` for cargo/rustc without affecting the rust-analyzer server). - The name `server.extraEnv` doesn't indicate that cargo/rustc will be affected but renaming it to `cargo.extraEnv` doesn't indicate that the rust-analyzer server would be affected. - To make the setting useful, it needs to be dynamically reloaded without requiring that the entire extension is reloaded. It might be possible to do this, but it would require the client communicating to the server what the overwritten env vars were at first launch, which isn't easy to do. This change adds two new configuration settings: `cargo.extraEnv` and `checkOnSave.extraEnv` that can be used to change the environment for the rust-analyzer server after launch (thus affecting any process that rust-analyzer invokes) and the `cargo check` command respectively. `cargo.extraEnv` supports dynamic changes by keeping track of the pre-change values of environment variables, thus it can undo changes made previously before applying the new configuration (and then requesting a workspace reload).
Configuration menu - View commit details
-
Copy full SHA for 11bf2e7 - Browse repository at this point
Copy the full SHA 11bf2e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d9f971 - Browse repository at this point
Copy the full SHA 0d9f971View commit details -
Configuration menu - View commit details
-
Copy full SHA for 39eaf78 - Browse repository at this point
Copy the full SHA 39eaf78View commit details
Commits on Sep 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e54f61d - Browse repository at this point
Copy the full SHA e54f61dView commit details -
Auto merge of rust-lang#13257 - rust-lang:revert-13147-fix/dyn-ty-inh…
…erent-methods, r=lnicola fix: Fix a crash introduced in rust-lang#13147 Reverts rust-lang/rust-analyzer#13147 https://github.com/rust-lang/rust-analyzer/actions/runs/3041499441/jobs/4898678721#step:18:62
Configuration menu - View commit details
-
Copy full SHA for 187bee0 - Browse repository at this point
Copy the full SHA 187bee0View commit details
Commits on Sep 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9dcd19b - Browse repository at this point
Copy the full SHA 9dcd19bView commit details