rust/compiler/rustc_ast_pretty
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
..
src Add spacing information to delimiters. 2023-12-11 09:36:40 +11:00
Cargo.toml Remove IterDelimited. 2023-11-22 08:13:21 +11:00