| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-09-29 | When glueing together tokens from macros, merge their spans | Chayim Refael Friedman | -2/+30 | |
| 2024-09-18 | Get rid of `$crate` in expansions shown to the user | Chayim Refael Friedman | -2/+17 | |
| Be it "Expand Macro Recursively", "Inline macro" or few other things. We replace it with the crate name, as should've always been. | ||||
| 2024-09-01 | internal: Lay basic ground work for standalone mbe tests | Lukas Wirth | -0/+135 | |
| 2024-08-16 | Properly account for editions in names | Chayim Refael Friedman | -4/+1 | |
| This PR touches a lot of parts. But the main changes are changing `hir_expand::Name` to be raw edition-dependently and only when necessary (unrelated to how the user originally wrote the identifier), and changing `is_keyword()` and `is_raw_identifier()` to be edition-aware (this was done in #17896, but the FIXMEs were fixed here). It is possible that I missed some cases, but most IDE parts should properly escape (or not escape) identifiers now. The rules of thumb are: - If we show the identifier to the user, its rawness should be determined by the edition of the edited crate. This is nice for IDE features, but really important for changes we insert to the source code. - For tests, I chose `Edition::CURRENT` (so we only have to (maybe) update tests when an edition becomes stable, to avoid churn). - For debugging tools (helper methods and logs), I used `Edition::LATEST`. | ||||
| 2024-08-15 | internal: Properly check the edition for edition dependent syntax kinds | Lukas Wirth | -7/+6 | |
| 2024-08-07 | Add missing `[package.description]` for 'syntax-bridge' crate | Vincent Esche | -1/+1 | |
| 2024-08-07 | Make 'syntax-bridge' crate inherit `[package.repository]` from workspace | Vincent Esche | -0/+1 | |
| 2024-08-05 | Split out syntax-bridge into a separate crate | Lukas Wirth | -0/+1303 | |
