rust-analyzer/crates/parser
Esteban Küber 8677ebbc73 Properly handle emojis as literal prefix in macros
Do not accept the following

```rust
macro_rules! lexes {($($_:tt)*) => {}}
lexes!(🐛"foo");
```

Before, invalid emoji identifiers were gated during parsing instead of lexing in all cases, but this didn't account for macro expansion of literal prefixes.

Fix #123696.
2024-04-10 23:19:27 +00:00
..
src Properly handle emojis as literal prefix in macros 2024-04-10 23:19:27 +00:00
test_data fix: Improve error recovery for match arms 2024-03-19 10:55:47 +01:00
Cargo.toml Cleanup 2024-03-04 11:10:06 +01:00