Skip to content

Commit 7ffec70

Browse files
committed
rustc_ast_pretty: Don't print space after $
For example, this code: $arg:expr used to be pretty-printed as: $ arg : expr but is now pretty-printed as: $arg : expr
1 parent f82d484 commit 7ffec70

11 files changed

+32
-28
lines changed

compiler/rustc_ast_pretty/src/pprust/state.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ pub fn print_crate<'a>(
136136
s.s.eof()
137137
}
138138

139-
// This makes printed token streams look slightly nicer,
140-
// and also addresses some specific regressions described in #63896 and #73345.
139+
/// This makes printed token streams look slightly nicer,
140+
/// and also addresses some specific regressions described in #63896 and #73345.
141141
fn tt_prepend_space(tt: &TokenTree, prev: &TokenTree) -> bool {
142142
if let TokenTree::Token(token) = prev {
143-
if matches!(token.kind, token::Dot) {
143+
if matches!(token.kind, token::Dot | token::Dollar) {
144144
return false;
145145
}
146146
if let token::DocComment(comment_kind, ..) = token.kind {

src/test/pretty/cast-lt.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
// pretty-mode:expanded
99
// pp-exact:cast-lt.pp
1010

11-
macro_rules! negative { ($ e : expr) => { $ e < 0 } }
11+
macro_rules! negative { ($e : expr) => { $e < 0 } }
1212

1313
fn main() { (1 as i32) < 0; }

src/test/pretty/delimited-token-groups.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#![feature(rustc_attrs)]
44

5-
macro_rules! mac { ($ ($ tt : tt) *) => () }
5+
macro_rules! mac { ($($tt : tt) *) => () }
66

77
mac! {
88
struct S { field1 : u8, field2 : u16, } impl Clone for S

src/test/pretty/macro.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
#![feature(decl_macro)]
44

5-
pub(crate) macro mac { ($ arg : expr) => { $ arg + $ arg } }
5+
pub(crate) macro mac { ($arg : expr) => { $arg + $arg } }
66

77
fn main() { }

src/test/pretty/macro_rules.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ macro_rules! matcher_brackets {
1111
}
1212

1313
macro_rules! all_fragments {
14-
($ b : block, $ e : expr, $ i : ident, $ it : item, $ l : lifetime, $ lit
15-
: literal, $ m : meta, $ p : pat, $ pth : path, $ s : stmt, $ tt : tt, $
16-
ty : ty, $ vis : vis) => { } ;
14+
($b : block, $e : expr, $i : ident, $it : item, $l : lifetime, $lit :
15+
literal, $m : meta, $p : pat, $pth : path, $s : stmt, $tt : tt, $ty : ty,
16+
$vis : vis) => { } ;
1717
}
1818

1919
fn main() { }

src/test/rustdoc/decl_macro.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub macro my_macro() {
99

1010
}
1111

12-
// @has decl_macro/macro.my_macro_2.html //pre 'pub macro my_macro_2($ ($ tok : tt) *) {'
12+
// @has decl_macro/macro.my_macro_2.html //pre 'pub macro my_macro_2($($tok : tt) *) {'
1313
// @has - //pre '...'
1414
// @has - //pre '}'
1515
pub macro my_macro_2($($tok:tt)*) {
@@ -18,8 +18,8 @@ pub macro my_macro_2($($tok:tt)*) {
1818

1919
// @has decl_macro/macro.my_macro_multi.html //pre 'pub macro my_macro_multi {'
2020
// @has - //pre '(_) => { ... },'
21-
// @has - //pre '($ foo : ident.$ bar : expr) => { ... },'
22-
// @has - //pre '($ ($ foo : literal), +) => { ... },'
21+
// @has - //pre '($foo : ident.$bar : expr) => { ... },'
22+
// @has - //pre '($($foo : literal), +) => { ... },'
2323
// @has - //pre '}'
2424
pub macro my_macro_multi {
2525
(_) => {
@@ -33,7 +33,7 @@ pub macro my_macro_multi {
3333
}
3434
}
3535

36-
// @has decl_macro/macro.by_example_single.html //pre 'pub macro by_example_single($ foo : expr) {'
36+
// @has decl_macro/macro.by_example_single.html //pre 'pub macro by_example_single($foo : expr) {'
3737
// @has - //pre '...'
3838
// @has - //pre '}'
3939
pub macro by_example_single {
@@ -42,12 +42,12 @@ pub macro by_example_single {
4242

4343
mod a {
4444
mod b {
45-
// @has decl_macro/a/b/macro.by_example_vis.html //pre 'pub(super) macro by_example_vis($ foo : expr) {'
45+
// @has decl_macro/a/b/macro.by_example_vis.html //pre 'pub(super) macro by_example_vis($foo : expr) {'
4646
pub(in super) macro by_example_vis {
4747
($foo:expr) => {}
4848
}
4949
mod c {
50-
// @has decl_macro/a/b/c/macro.by_example_vis_named.html //pre 'pub(in a) macro by_example_vis_named($ foo : expr) {'
50+
// @has decl_macro/a/b/c/macro.by_example_vis_named.html //pre 'pub(in a) macro by_example_vis_named($foo : expr) {'
5151
pub(in a) macro by_example_vis_named {
5252
($foo:expr) => {}
5353
}

src/test/rustdoc/macro_rules-matchers.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
// @has - '//span[@class="op"]' '>'
1515
// @has - '{ ... };'
1616

17-
// @has - '($ ($'
18-
// @has - '//span[@class="ident"]' 'arg'
17+
// @has - '($('
18+
// @has - '//span[@class="macro-nonterminal"]' '$'
19+
// @has - '//span[@class="macro-nonterminal"]' 'arg'
1920
// @has - ':'
2021
// @has - '//span[@class="ident"]' 'tt'
22+
// @has - '),'
2123
// @has - '//span[@class="op"]' '+'
2224
// @has - ')'
2325
pub use std::todo;
@@ -27,10 +29,12 @@ mod mod1 {
2729
// @has - 'macro_rules!'
2830
// @has - 'macro1'
2931
// @has - '{ ()'
30-
// @has - '($ ('
31-
// @has - 'arg'
32+
// @has - '($('
33+
// @has - '//span[@class="macro-nonterminal"]' '$'
34+
// @has - '//span[@class="macro-nonterminal"]' 'arg'
35+
// @has - ':'
3236
// @has - 'expr'
33-
// @has - ','
37+
// @has - '),'
3438
// @has - '+'
3539
// @has - ')'
3640
#[macro_export]

src/test/rustdoc/macros.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @has macros/macro.my_macro.html //pre 'macro_rules! my_macro {'
22
// @has - //pre '() => { ... };'
3-
// @has - //pre '($ a : tt) => { ... };'
4-
// @has - //pre '($ e : expr) => { ... };'
3+
// @has - //pre '($a : tt) => { ... };'
4+
// @has - //pre '($e : expr) => { ... };'
55
#[macro_export]
66
macro_rules! my_macro {
77
() => [];
@@ -12,8 +12,8 @@ macro_rules! my_macro {
1212
// Check that exported macro defined in a module are shown at crate root.
1313
// @has macros/macro.my_sub_macro.html //pre 'macro_rules! my_sub_macro {'
1414
// @has - //pre '() => { ... };'
15-
// @has - //pre '($ a : tt) => { ... };'
16-
// @has - //pre '($ e : expr) => { ... };'
15+
// @has - //pre '($a : tt) => { ... };'
16+
// @has - //pre '($e : expr) => { ... };'
1717
mod sub {
1818
#[macro_export]
1919
macro_rules! my_sub_macro {

src/test/ui/hygiene/unpretty-debug.stdout

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![feature /* 0#0 */(no_core)]
99
#![no_core /* 0#0 */]
1010

11-
macro_rules! foo /* 0#0 */ { ($ x : ident) => { y + $ x } }
11+
macro_rules! foo /* 0#0 */ { ($x : ident) => { y + $x } }
1212

1313
fn bar /* 0#0 */() {
1414
let x /* 0#0 */ = 1;

src/test/ui/proc-macro/meta-macro-hygiene.stdout

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ macro_rules! produce_it
3030
*/ {
3131
() =>
3232
{
33-
meta_macro :: print_def_site! ($ crate :: dummy! ()) ;
33+
meta_macro :: print_def_site! ($crate :: dummy! ()) ;
3434
// `print_def_site!` will respan the `$crate` identifier
3535
// with `Span::def_site()`. This should cause it to resolve
3636
// relative to `meta_macro`, *not* `make_macro` (despite

src/test/ui/proc-macro/nonterminal-token-hygiene.stdout

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ macro_rules! outer
5050
/*
5151
0#0
5252
*/ {
53-
($ item : item) =>
53+
($item : item) =>
5454
{
55-
macro inner() { print_bang! { $ item } } inner! () ;
55+
macro inner() { print_bang! { $item } } inner! () ;
5656

5757
} ;
5858
}

0 commit comments

Comments
 (0)