rust-analyzer/crates/ide-completion
A4-Tacks 07f33e2b81
Fix IfExpr then branch suggest
- And add logic operation suggest

Example
---
In the old implementation, it always suggested conditions,
this is a lot of noise, e.g `contract_checks()~(use std::intrinsics::contract_checks) const fn() -> bool`

```rust
fn foo() {
    if true {
        c$0
    }
}
```
2025-09-20 20:56:27 +08:00
..
src Fix IfExpr then branch suggest 2025-09-20 20:56:27 +08:00
Cargo.toml Don't run doctests 2025-06-23 00:50:22 +03:00