rust-analyzer/crates/ide-diagnostics/src
Chayim Refael Friedman 4ac3dc1a2f Correctly resolve variables and labels from before macro definition in macro expansion
E.g.:
```rust
let v;
macro_rules! m { () => { v }; }
```

This was an existing bug, but it was less severe because unless the variable was shadowed it would be correctly resolved. With hygiene however, without this fix the variable is never resolved.
2024-10-22 21:49:17 +03:00
..
handlers Correctly resolve variables and labels from before macro definition in macro expansion 2024-10-22 21:49:17 +03:00
lib.rs Handle lint attributes that are under #[cfg_attr] 2024-09-19 22:21:48 +03:00
tests.rs Resolve included files to their calling modules in IDE layer 2024-08-12 13:45:33 +02:00