rust/compiler/rustc_parse/src
Nicholas Nethercote 4cfdbd328b Add spacing information to delimiters.
This is an extension of the previous commit. It means the output of
something like this:
```
stringify!(let a: Vec<u32> = vec![];)
```
goes from this:
```
let a: Vec<u32> = vec![] ;
```
With this PR, it now produces this string:
```
let a: Vec<u32> = vec![];
```
2023-12-11 09:36:40 +11:00
..
lexer Add spacing information to delimiters. 2023-12-11 09:36:40 +11:00
parser Add spacing information to delimiters. 2023-12-11 09:36:40 +11:00
errors.rs Support async gen fn 2023-12-08 17:23:26 +00:00
lib.rs Use rustc_fluent_macro::fluent_messages! directly. 2023-11-26 08:38:40 +11:00
validate_attr.rs Fix clippy::needless_borrow in the compiler 2023-11-21 20:13:40 +01:00