rust-analyzer/crates/hir-def
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
..
src Correctly resolve variables and labels from before macro definition in macro expansion 2024-10-22 21:49:17 +03:00
Cargo.toml Implement semitransparent hygiene 2024-10-22 21:26:56 +03:00