<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/ui/proc-macro/cfg-eval-inner.stdout, branch perf-tmp</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2024-07-24T11:03:52+00:00</updated>
<entry>
<title>Improve spans on evaluated `cfg_attr`s.</title>
<updated>2024-07-24T11:03:52+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2024-07-24T10:29:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ac26b883bf3824de42e7adbf0fa69e24f2586ddf'/>
<id>urn:sha1:ac26b883bf3824de42e7adbf0fa69e24f2586ddf</id>
<content type='text'>
When converting something like `#![cfg_attr(cond, attr)]` into
`#![attr]`, we currently duplicate the `#` token and the `!` token. But
weirdly, there is also this comment:

// We don't really have a good span to use for the synthesized `[]`
// in `#[attr]`, so just use the span of the `#` token.

Maybe that comment used to be true? But now it is false: we can
duplicate the existing delimiters (and their spans and spacing), much
like we do for the `#` and `!`.

This commit does that, thus removing the incorrect comment, and
improving the spans on `Group`s in a few proc-macro tests.
</content>
</entry>
<entry>
<title>Don't insert spaces before most semicolons in `print_tts`.</title>
<updated>2024-01-22T09:14:59+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2023-11-10T03:34:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=41e4a3e08649ed2a41cf60c6104795e0971cee67'/>
<id>urn:sha1:41e4a3e08649ed2a41cf60c6104795e0971cee67</id>
<content type='text'>
This gives better output for code produced by proc macros.
</content>
</entry>
<entry>
<title>Add spacing information to delimiters.</title>
<updated>2023-12-10T22:36:40+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2023-10-12T04:36:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4cfdbd328b7171b2328d11b950b1af0978d6b1ef'/>
<id>urn:sha1:4cfdbd328b7171b2328d11b950b1af0978d6b1ef</id>
<content type='text'>
This is an extension of the previous commit. It means the output of
something like this:
```
stringify!(let a: Vec&lt;u32&gt; = vec![];)
```
goes from this:
```
let a: Vec&lt;u32&gt; = vec![] ;
```
With this PR, it now produces this string:
```
let a: Vec&lt;u32&gt; = vec![];
```
</content>
</entry>
<entry>
<title>Improve `print_tts` by changing `tokenstream::Spacing`.</title>
<updated>2023-12-10T22:19:09+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2023-08-08T01:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=925f7fad576b6a8659d93846faf8d9610e59bab0'/>
<id>urn:sha1:925f7fad576b6a8659d93846faf8d9610e59bab0</id>
<content type='text'>
`tokenstream::Spacing` appears on all `TokenTree::Token` instances,
both punct and non-punct. Its current usage:
- `Joint` means "can join with the next token *and* that token is a
  punct".
- `Alone` means "cannot join with the next token *or* can join with the
  next token but that token is not a punct".

The fact that `Alone` is used for two different cases is awkward.
This commit augments `tokenstream::Spacing` with a new variant
`JointHidden`, resulting in:
- `Joint` means "can join with the next token *and* that token is a
  punct".
- `JointHidden` means "can join with the next token *and* that token is a
  not a punct".
- `Alone` means "cannot join with the next token".

This *drastically* improves the output of `print_tts`. For example,
this:
```
stringify!(let a: Vec&lt;u32&gt; = vec![];)
```
currently produces this string:
```
let a : Vec &lt; u32 &gt; = vec! [] ;
```
With this PR, it now produces this string:
```
let a: Vec&lt;u32&gt; = vec![] ;
```
(The space after the `]` is because `TokenTree::Delimited` currently
doesn't have spacing information. The subsequent commit fixes this.)

The new `print_tts` doesn't replicate original code perfectly. E.g.
multiple space characters will be condensed into a single space
character. But it's much improved.

`print_tts` still produces the old, uglier output for code produced by
proc macros. Because we have to translate the generated code from
`proc_macro::Spacing` to the more expressive `token::Spacing`, which
results in too much `proc_macro::Along` usage and no
`proc_macro::JointHidden` usage. So `space_between` still exists and
is used by `print_tts` in conjunction with the `Spacing` field.

This change will also help with the removal of `Token::Interpolated`.
Currently interpolated tokens are pretty-printed nicely via AST pretty
printing. `Token::Interpolated` removal will mean they get printed with
`print_tts`. Without this change, that would result in much uglier
output for code produced by decl macro expansions. With this change, AST
pretty printing and `print_tts` produce similar results.

The commit also tweaks the comments on `proc_macro::Spacing`. In
particular, it refers to "compound tokens" rather than "multi-char
operators" because lifetimes aren't operators.
</content>
</entry>
<entry>
<title>Move /src/test to /tests</title>
<updated>2023-01-11T09:32:08+00:00</updated>
<author>
<name>Albert Larsan</name>
<email>74931857+albertlarsan68@users.noreply.github.com</email>
</author>
<published>2023-01-05T08:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cf2dff2b1e3fa55fa5415d524200070d0d7aacfe'/>
<id>urn:sha1:cf2dff2b1e3fa55fa5415d524200070d0d7aacfe</id>
<content type='text'>
</content>
</entry>
</feed>
