1
Fork 0
rust/compiler/rustc_ast_pretty/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
..
pp Remove or downgrade unnecessary pub visibility markers. 2023-11-22 08:13:21 +11:00
pprust Add spacing information to delimiters. 2023-12-11 09:36:40 +11:00
helpers.rs Prefer doc comments over //-comments in compiler 2022-11-27 11:19:04 +00:00
lib.rs Remove unneeded features. 2023-11-22 08:13:21 +11:00
pp.rs Remove or downgrade unnecessary pub visibility markers. 2023-11-22 08:13:21 +11:00