-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
rust-analyzer subtree update
#150702
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 subtree update
#150702
Conversation
Example
---
```rust
enum Foo {
Num(i32)
}
impl Foo {
fn try_into_num(self) -> Result<i32, Self> {
if let Self::Num(v) = self {
Ok(v)
} else {
Err(self)
}
}
}
fn handle(foo: Foo) {
foo.try_into_num().$0
}
```
**Before this PR**
```rust
fn handle(foo: Foo) {
if let Ok(${1:try_into_num}) = foo.try_into_num() {
$0
}
}
```
**After this PR**
```rust
fn handle(foo: Foo) {
if let Ok(${1:num}) = foo.try_into_num() {
$0
}
}
```
Allow finding references from doc comments
Bumps [qs](https://github.com/ljharb/qs) from 6.14.0 to 6.14.1. - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](ljharb/qs@v6.14.0...v6.14.1) --- updated-dependencies: - dependency-name: qs dependency-version: 6.14.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…-into Add useless prefix `try_into_` for suggest_name
…yarn/editors/code/qs-6.14.1 Bump qs from 6.14.0 to 6.14.1 in /editors/code
minor: Fix some minor FIXMEs
To reduce the amount of re-allocating the hashtables which can be expensive given the need to re-hash
Pre-allocate intern storages with 64kb of data / 1024 elements
Remove unnecessary `ConstLiteralRef` enum
…nlay-hint-location-links feat: Add location links for generic parameter type hints
internal: Reduce `impl_signature` query dependencies in method resolution
…e-proc-macro-bidirectional-flow proc-macro-srv: support file and local_file via bidirectional callbacks
perf: Only compute lang items for `#![feature(lang_items)]` crates
…rom procmacrosrvcli
…rce-text Fix source text
internal: Clean up proc-macro-srv callback trait
Add a README.md to proc-macro-srv-cli
Migrate `move_arm_cond_to_match_guard` assist to use `SyntaxEditor`
…ecialize fix: Suppress false positive missing assoc item diag on specialization
|
rust-analyzer is developed in its own repository. If possible, consider making this change to rust-lang/rust-analyzer instead. cc @rust-lang/rust-analyzer |
|
@bors r+ p=1 rollup=always |
`rust-analyzer` subtree update Subtree update of `rust-analyzer` to rust-lang/rust-analyzer@6a1246b. Created using https://github.com/rust-lang/josh-sync. r? `@ghost`
`rust-analyzer` subtree update Subtree update of `rust-analyzer` to rust-lang/rust-analyzer@6a1246b. Created using https://github.com/rust-lang/josh-sync. r? ``@ghost``
|
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 4fa80a5 (parent) -> 7c04f5d (this PR) Test differencesShow 12 test diffsStage 0
Stage 1
Additionally, 2 doctest diffs were found. These are ignored, as they are noisy. Job group index Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 7c04f5d216b5dcfff0a55fc20327a1c519004699 --output-dir test-dashboardAnd then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
|
Finished benchmarking commit (7c04f5d): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (primary -2.7%, secondary -2.9%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (secondary -2.3%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 472.645s -> 475.09s (0.52%) |
Subtree update of
rust-analyzerto rust-lang/rust-analyzer@6a1246b.Created using https://github.com/rust-lang/josh-sync.
r? @ghost