about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/edition
AgeCommit message (Collapse)AuthorLines
2025-03-17chore: Bump `Edition::CURRENT` to 2024Lukas Wirth-2/+2
2025-03-16internal: Render root syntax contexts more clearlyLukas Wirth-0/+9
2025-03-10internal: port rust-analyzer to new SalsaDavid Barsky-0/+10
2025-01-09Make edition per-token, not per-fileChayim Refael Friedman-1/+2
More correctly, *also* per-token. Because as it turns out, while the top-level edition affects parsing (I think), the per-token edition affects escaping of identifiers/keywords.
2025-01-03Add description field to edition manifestLaurențiu Nicola-0/+1
2024-12-11Properly handle different defaults for severity of lintsChayim Refael Friedman-0/+89
Previously all lints were assumed to be `#[warn]`, and we had a hand-coded list of `#[allow]` exceptions. Now the severity is autogenerated from rustdoc output. Also support lints that change status between editions, and the `warnings` lint group.