1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
|
// run-pass
// edition:2021
// compile-flags: --test
#![allow(incomplete_features)]
#![feature(async_closure)]
#![feature(auto_traits)]
#![feature(box_patterns)]
#![feature(const_trait_impl)]
#![feature(coroutines)]
#![feature(decl_macro)]
#![feature(explicit_tail_calls)]
#![feature(more_qualified_paths)]
#![feature(raw_ref_op)]
#![feature(trait_alias)]
#![feature(try_blocks)]
#![feature(type_ascription)]
#![feature(yeet_expr)]
#![deny(unused_macros)]
// These macros force the use of AST pretty-printing by converting the input to
// a particular fragment specifier.
macro_rules! block { ($block:block) => { stringify!($block) }; }
macro_rules! expr { ($expr:expr) => { stringify!($expr) }; }
macro_rules! item { ($item:item) => { stringify!($item) }; }
macro_rules! meta { ($meta:meta) => { stringify!($meta) }; }
macro_rules! pat { ($pat:pat) => { stringify!($pat) }; }
macro_rules! path { ($path:path) => { stringify!($path) }; }
macro_rules! stmt { ($stmt:stmt) => { stringify!($stmt) }; }
macro_rules! ty { ($ty:ty) => { stringify!($ty) }; }
macro_rules! vis { ($vis:vis) => { stringify!($vis) }; }
// Use this when AST pretty-printing and TokenStream pretty-printing give
// the same result (which is preferable.)
macro_rules! c1 {
($frag:ident, [$($tt:tt)*], $s:literal) => {
assert_eq!($frag!($($tt)*), $s);
assert_eq!(stringify!($($tt)*), $s);
};
}
// Use this when AST pretty-printing and TokenStream pretty-printing give
// different results.
//
// `c1` and `c2` could be in a single macro, but having them separate makes it
// easy to find the cases where the two pretty-printing approaches give
// different results.
macro_rules! c2 {
($frag:ident, [$($tt:tt)*], $s1:literal, $s2:literal) => {
assert_ne!($s1, $s2, "should use `c1!` instead");
assert_eq!($frag!($($tt)*), $s1);
assert_eq!(stringify!($($tt)*), $s2);
};
}
#[test]
fn test_block() {
c1!(block, [ {} ], "{}");
c1!(block, [ { true } ], "{ true }");
c1!(block, [ { return } ], "{ return }");
c2!(block, [ {
return;
} ],
"{ return; }",
"{ return ; }"
);
c2!(block,
[ {
let _;
true
} ],
"{ let _; true }",
"{ let _ ; true }"
);
}
#[test]
fn test_expr() {
// ExprKind::Array
c1!(expr, [ [] ], "[]");
c1!(expr, [ [true] ], "[true]");
c2!(expr, [ [true,] ], "[true]", "[true,]");
c1!(expr, [ [true, true] ], "[true, true]");
// ExprKind::ConstBlock
// FIXME: todo
// ExprKind::Call
c1!(expr, [ f() ], "f()");
c2!(expr, [ f::<u8>() ], "f::<u8>()", "f :: < u8 > ()");
c2!(expr, [ f::<1>() ], "f::<1>()", "f :: < 1 > ()");
c2!(expr, [ f::<'a, u8, 1>() ], "f::<'a, u8, 1>()", "f :: < 'a, u8, 1 > ()");
c1!(expr, [ f(true) ], "f(true)");
c2!(expr, [ f(true,) ], "f(true)", "f(true,)");
c2!(expr, [ ()() ], "()()", "() ()");
// ExprKind::MethodCall
c1!(expr, [ x.f() ], "x.f()");
c2!(expr, [ x.f::<u8>() ], "x.f::<u8>()", "x.f :: < u8 > ()");
c2!(expr, [ x.collect::<Vec<_>>() ], "x.collect::<Vec<_>>()", "x.collect :: < Vec < _ >> ()");
// ExprKind::Tup
c1!(expr, [ () ], "()");
c1!(expr, [ (true,) ], "(true,)");
c1!(expr, [ (true, false) ], "(true, false)");
c2!(expr, [ (true, false,) ], "(true, false)", "(true, false,)");
// ExprKind::Binary
c1!(expr, [ true || false ], "true || false");
c1!(expr, [ true || false && false ], "true || false && false");
c1!(expr, [ a < 1 && 2 < b && c > 3 && 4 > d ], "a < 1 && 2 < b && c > 3 && 4 > d");
c2!(expr, [ a & b & !c ], "a & b & !c", "a & b &! c"); // FIXME
c2!(expr,
[ a + b * c - d + -1 * -2 - -3],
"a + b * c - d + -1 * -2 - -3",
"a + b * c - d + - 1 * - 2 - - 3"
);
c2!(expr, [ x = !y ], "x = !y", "x =! y"); // FIXME
// ExprKind::Unary
c2!(expr, [ *expr ], "*expr", "* expr");
c2!(expr, [ !expr ], "!expr", "! expr");
c2!(expr, [ -expr ], "-expr", "- expr");
// ExprKind::Lit
c1!(expr, [ 'x' ], "'x'");
c1!(expr, [ 1_000_i8 ], "1_000_i8");
c1!(expr, [ 1.00000000000000001 ], "1.00000000000000001");
// ExprKind::Cast
c1!(expr, [ expr as T ], "expr as T");
c2!(expr, [ expr as T<u8> ], "expr as T<u8>", "expr as T < u8 >");
// ExprKind::Type: there is no syntax for type ascription.
// ExprKind::Let
c1!(expr, [ if let Some(a) = b { c } else { d } ], "if let Some(a) = b { c } else { d }");
// ExprKind::If
c1!(expr, [ if true {} ], "if true {}");
c2!(expr, [ if !true {} ], "if !true {}", "if! true {}"); // FIXME
c2!(expr,
[ if ::std::blah() { } else { } ],
"if ::std::blah() {} else {}",
"if :: std :: blah() {} else {}"
);
c1!(expr, [ if let true = true {} else {} ], "if let true = true {} else {}");
c1!(expr,
[ if true {
} else if false {
} ],
"if true {} else if false {}"
);
c1!(expr,
[ if true {
} else if false {
} else {
} ],
"if true {} else if false {} else {}"
);
c2!(expr,
[ if true {
return;
} else if false {
0
} else {
0
} ],
"if true { return; } else if false { 0 } else { 0 }",
"if true { return ; } else if false { 0 } else { 0 }"
);
// ExprKind::While
c1!(expr, [ while true {} ], "while true {}");
c2!(expr, [ 'a: while true {} ], "'a: while true {}", "'a : while true {}");
c1!(expr, [ while let true = true {} ], "while let true = true {}");
// ExprKind::ForLoop
c1!(expr, [ for _ in x {} ], "for _ in x {}");
c2!(expr, [ 'a: for _ in x {} ], "'a: for _ in x {}", "'a : for _ in x {}");
// ExprKind::Loop
c1!(expr, [ loop {} ], "loop {}");
c2!(expr, [ 'a: loop {} ], "'a: loop {}", "'a : loop {}");
// ExprKind::Match
c1!(expr, [ match self {} ], "match self {}");
c1!(expr,
[ match self {
Ok => 1,
} ],
"match self { Ok => 1, }"
);
c1!(expr,
[ match self {
Ok => 1,
Err => 0,
} ],
"match self { Ok => 1, Err => 0, }"
);
// ExprKind::Closure
c1!(expr, [ || {} ], "|| {}");
c2!(expr, [ |x| {} ], "|x| {}", "| x | {}");
c2!(expr, [ |x: u8| {} ], "|x: u8| {}", "| x : u8 | {}");
c1!(expr, [ || () ], "|| ()");
c1!(expr, [ move || self ], "move || self");
c1!(expr, [ async || self ], "async || self");
c1!(expr, [ async move || self ], "async move || self");
c1!(expr, [ static || self ], "static || self");
c1!(expr, [ static move || self ], "static move || self");
c1!(expr, [ static async || self ], "static async || self");
c1!(expr, [ static async move || self ], "static async move || self");
c1!(expr, [ || -> u8 { self } ], "|| -> u8 { self }");
c2!(expr, [ 1 + || {} ], "1 + (|| {})", "1 + || {}"); // AST??
// ExprKind::Block
c1!(expr, [ {} ], "{}");
c1!(expr, [ unsafe {} ], "unsafe {}");
c2!(expr, [ 'a: {} ], "'a: {}", "'a : {}");
c1!(expr, [ #[attr] {} ], "#[attr] {}");
c2!(expr,
[
{
#![attr]
}
],
"{\n\
\x20 #![attr]\n\
}",
"{ #! [attr] }"
);
// ExprKind::Async
c1!(expr, [ async {} ], "async {}");
c1!(expr, [ async move {} ], "async move {}");
// ExprKind::Await
c1!(expr, [ expr.await ], "expr.await");
// ExprKind::TryBlock
c1!(expr, [ try {} ], "try {}");
// ExprKind::Assign
c1!(expr, [ expr = true ], "expr = true");
// ExprKind::AssignOp
c1!(expr, [ expr += true ], "expr += true");
// ExprKind::Field
c1!(expr, [ expr.field ], "expr.field");
c1!(expr, [ expr.0 ], "expr.0");
// ExprKind::Index
c2!(expr, [ expr[true] ], "expr[true]", "expr [true]");
// ExprKind::Range
c1!(expr, [ .. ], "..");
c2!(expr, [ ..hi ], "..hi", ".. hi");
c2!(expr, [ lo.. ], "lo..", "lo ..");
c2!(expr, [ lo..hi ], "lo..hi", "lo .. hi");
c2!(expr, [ ..=hi ], "..=hi", "..= hi");
c2!(expr, [ lo..=hi ], "lo..=hi", "lo ..= hi");
c2!(expr, [ -2..=-1 ], "-2..=-1", "- 2 ..= - 1");
// ExprKind::Underscore
// FIXME: todo
// ExprKind::Path
c1!(expr, [ thing ], "thing");
c2!(expr, [ m::thing ], "m::thing", "m :: thing");
c2!(expr, [ self::thing ], "self::thing", "self :: thing");
c2!(expr, [ crate::thing ], "crate::thing", "crate :: thing");
c2!(expr, [ Self::thing ], "Self::thing", "Self :: thing");
c2!(expr, [ <Self as T>::thing ], "<Self as T>::thing", "< Self as T > :: thing");
c2!(expr, [ Self::<'static> ], "Self::<'static>", "Self :: < 'static >");
// ExprKind::AddrOf
c2!(expr, [ &expr ], "&expr", "& expr");
c2!(expr, [ &mut expr ], "&mut expr", "& mut expr");
c2!(expr, [ &raw const expr ], "&raw const expr", "& raw const expr");
c2!(expr, [ &raw mut expr ], "&raw mut expr", "& raw mut expr");
// ExprKind::Break
c1!(expr, [ break ], "break");
c1!(expr, [ break 'a ], "break 'a");
c1!(expr, [ break true ], "break true");
c1!(expr, [ break 'a true ], "break 'a true");
// ExprKind::Continue
c1!(expr, [ continue ], "continue");
c1!(expr, [ continue 'a ], "continue 'a");
// ExprKind::Ret
c1!(expr, [ return ], "return");
c1!(expr, [ return true ], "return true");
// ExprKind::InlineAsm: untestable because this test works pre-expansion.
// ExprKind::OffsetOf: untestable because this test works pre-expansion.
// ExprKind::MacCall
c2!(expr, [ mac!(...) ], "mac!(...)", "mac! (...)");
c2!(expr, [ mac![...] ], "mac![...]", "mac! [...]");
c1!(expr, [ mac! { ... } ], "mac! { ... }");
// ExprKind::Struct
c1!(expr, [ Struct {} ], "Struct {}");
c2!(expr,
[ <Struct as Trait>::Type {} ],
"<Struct as Trait>::Type {}",
"< Struct as Trait > :: Type {}"
);
c1!(expr, [ Struct { .. } ], "Struct { .. }");
c2!(expr, [ Struct { ..base } ], "Struct { ..base }", "Struct { .. base }");
c1!(expr, [ Struct { x } ], "Struct { x }");
c1!(expr, [ Struct { x, .. } ], "Struct { x, .. }");
c2!(expr, [ Struct { x, ..base } ], "Struct { x, ..base }", "Struct { x, .. base }");
c2!(expr, [ Struct { x: true } ], "Struct { x: true }", "Struct { x : true }");
c2!(expr, [ Struct { x: true, .. } ], "Struct { x: true, .. }", "Struct { x : true, .. }");
c2!(expr,
[ Struct { x: true, ..base } ],
"Struct { x: true, ..base }",
"Struct { x : true, .. base }"
);
// ExprKind::Repeat
c2!(expr, [ [(); 0] ], "[(); 0]", "[() ; 0]");
// ExprKind::Paren
c1!(expr, [ (expr) ], "(expr)");
// ExprKind::Try
c2!(expr, [ expr? ], "expr?", "expr ?");
// ExprKind::Yield
c1!(expr, [ yield ], "yield");
c1!(expr, [ yield true ], "yield true");
// ExprKind::Yeet
c1!(expr, [ do yeet ], "do yeet");
c1!(expr, [ do yeet 0 ], "do yeet 0");
// ExprKind::Become
// FIXME: todo
// ExprKind::IncludedBytes
// FIXME: todo
// ExprKind::FormatArgs: untestable because this test works pre-expansion.
// ExprKind::Err: untestable.
}
#[test]
fn test_item() {
// ItemKind::ExternCrate
c2!(item, [ extern crate std; ], "extern crate std;", "extern crate std ;");
c2!(item,
[ pub extern crate self as std; ],
"pub extern crate self as std;",
"pub extern crate self as std ;"
);
// ItemKind::Use
c2!(item,
[ pub use crate::{a, b::c}; ],
"pub use crate::{a, b::c};",
"pub use crate :: { a, b :: c } ;"
);
c2!(item, [ pub use A::*; ], "pub use A::*;", "pub use A :: * ;");
// ItemKind::Static
c2!(item, [ pub static S: () = {}; ], "pub static S: () = {};", "pub static S : () = {} ;");
c2!(item, [ static mut S: () = {}; ], "static mut S: () = {};", "static mut S : () = {} ;");
c2!(item, [ static S: (); ], "static S: ();", "static S : () ;");
c2!(item, [ static mut S: (); ], "static mut S: ();", "static mut S : () ;");
// ItemKind::Const
c2!(item, [ pub const S: () = {}; ], "pub const S: () = {};", "pub const S : () = {} ;");
c2!(item, [ const S: (); ], "const S: ();", "const S : () ;");
// ItemKind::Fn
c1!(item,
[ pub default const async unsafe extern "C" fn f() {} ],
"pub default const async unsafe extern \"C\" fn f() {}"
);
c2!(item,
[ fn g<T>(t: Vec<Vec<Vec<T>>>) {} ],
"fn g<T>(t: Vec<Vec<Vec<T>>>) {}",
"fn g < T > (t : Vec < Vec < Vec < T >> >) {}"
);
c2!(item,
[ fn h<'a>(t: &'a Vec<Cell<dyn D>>) {} ],
"fn h<'a>(t: &'a Vec<Cell<dyn D>>) {}",
"fn h < 'a > (t : & 'a Vec < Cell < dyn D >>) {}"
);
// ItemKind::Mod
c2!(item, [ pub mod m; ], "pub mod m;", "pub mod m ;");
c1!(item, [ mod m {} ], "mod m {}");
c2!(item, [ unsafe mod m; ], "unsafe mod m;", "unsafe mod m ;");
c1!(item, [ unsafe mod m {} ], "unsafe mod m {}");
// ItemKind::ForeignMod
c1!(item, [ extern "C" {} ], "extern \"C\" {}");
c2!(item,
[ pub extern "C" {} ],
"extern \"C\" {}", // ??
"pub extern \"C\" {}"
);
c1!(item, [ unsafe extern "C++" {} ], "unsafe extern \"C++\" {}");
// ItemKind::GlobalAsm: untestable because this test works pre-expansion.
// ItemKind::TyAlias
c2!(item,
[
pub default type Type<'a>: Bound
where
Self: 'a,
= T;
],
"pub default type Type<'a>: Bound where Self: 'a = T;",
"pub default type Type < 'a > : Bound where Self : 'a, = T ;"
);
// ItemKind::Enum
c1!(item, [ pub enum Void {} ], "pub enum Void {}");
c1!(item,
[
enum Empty {
Unit,
Tuple(),
Struct {},
}
],
"enum Empty { Unit, Tuple(), Struct {}, }"
);
c2!(item,
[
enum Enum<T>
where
T: 'a,
{
Unit,
Tuple(T),
Struct { t: T },
}
],
"enum Enum<T> where T: 'a {\n\
\x20 Unit,\n\
\x20 Tuple(T),\n\
\x20 Struct {\n\
\x20 t: T,\n\
\x20 },\n\
}",
"enum Enum < T > where T : 'a, { Unit, Tuple(T), Struct { t : T }, }"
);
// ItemKind::Struct
c2!(item, [ pub struct Unit; ], "pub struct Unit;", "pub struct Unit ;");
c2!(item, [ struct Tuple(); ], "struct Tuple();", "struct Tuple() ;");
c2!(item, [ struct Tuple(T); ], "struct Tuple(T);", "struct Tuple(T) ;");
c1!(item, [ struct Struct {} ], "struct Struct {}");
c2!(item,
[
struct Struct<T>
where
T: 'a,
{
t: T,
}
],
"struct Struct<T> where T: 'a {\n\
\x20 t: T,\n\
}",
"struct Struct < T > where T : 'a, { t : T, }"
);
// ItemKind::Union
c1!(item, [ pub union Union {} ], "pub union Union {}");
c2!(item,
[
union Union<T> where T: 'a {
t: T,
}
],
"union Union<T> where T: 'a {\n\
\x20 t: T,\n\
}",
"union Union < T > where T : 'a { t : T, }"
);
// ItemKind::Trait
c1!(item, [ pub unsafe auto trait Send {} ], "pub unsafe auto trait Send {}");
c2!(item,
[
trait Trait<'a>: Sized
where
Self: 'a,
{
}
],
"trait Trait<'a>: Sized where Self: 'a {}",
"trait Trait < 'a > : Sized where Self : 'a, {}"
);
// ItemKind::TraitAlias
c2!(item,
[ pub trait Trait<T> = Sized where T: 'a; ],
"pub trait Trait<T> = Sized where T: 'a;",
"pub trait Trait < T > = Sized where T : 'a ;"
);
// ItemKind::Impl
c1!(item, [ pub impl Struct {} ], "pub impl Struct {}");
c2!(item, [ impl<T> Struct<T> {} ], "impl<T> Struct<T> {}", "impl < T > Struct < T > {}");
c1!(item, [ pub impl Trait for Struct {} ], "pub impl Trait for Struct {}");
c2!(item,
[ impl<T> const Trait for T {} ],
"impl<T> const Trait for T {}",
"impl < T > const Trait for T {}"
);
c2!(item, [ impl ~const Struct {} ], "impl ~const Struct {}", "impl ~ const Struct {}");
// ItemKind::MacCall
c2!(item, [ mac!(...); ], "mac!(...);", "mac! (...) ;");
c2!(item, [ mac![...]; ], "mac![...];", "mac! [...] ;");
c1!(item, [ mac! { ... } ], "mac! { ... }");
// ItemKind::MacroDef
c1!(item,
[
macro_rules! stringify {
() => {};
}
],
"macro_rules! stringify { () => {} ; }"
);
c2!(item,
[ pub macro stringify() {} ],
"pub macro stringify { () => {} }", // ??
"pub macro stringify() {}"
);
}
#[test]
fn test_meta() {
c1!(meta, [ k ], "k");
c1!(meta, [ k = "v" ], "k = \"v\"");
c1!(meta, [ list(k1, k2 = "v") ], "list(k1, k2 = \"v\")");
c2!(meta, [ serde::k ], "serde::k", "serde :: k");
}
#[test]
fn test_pat() {
// PatKind::Wild
c1!(pat, [ _ ], "_");
// PatKind::Ident
c1!(pat, [ _x ], "_x");
c1!(pat, [ ref _x ], "ref _x");
c1!(pat, [ mut _x ], "mut _x");
c1!(pat, [ ref mut _x ], "ref mut _x");
c1!(pat, [ ref mut _x @ _ ], "ref mut _x @ _");
// PatKind::Struct
c1!(pat, [ Struct {} ], "Struct {}");
c2!(pat, [ Struct::<u8> {} ], "Struct::<u8> {}", "Struct :: < u8 > {}");
c2!(pat, [ Struct::<'static> {} ], "Struct::<'static> {}", "Struct :: < 'static > {}");
c1!(pat, [ Struct { x } ], "Struct { x }");
c2!(pat, [ Struct { x: _x } ], "Struct { x: _x }", "Struct { x : _x }");
c1!(pat, [ Struct { .. } ], "Struct { .. }");
c1!(pat, [ Struct { x, .. } ], "Struct { x, .. }");
c2!(pat, [ Struct { x: _x, .. } ], "Struct { x: _x, .. }", "Struct { x : _x, .. }");
c2!(pat,
[ <Struct as Trait>::Type {} ],
"<Struct as Trait>::Type {}",
"< Struct as Trait > :: Type {}"
);
// PatKind::TupleStruct
c1!(pat, [ Tuple() ], "Tuple()");
c2!(pat, [ Tuple::<u8>() ], "Tuple::<u8>()", "Tuple :: < u8 > ()");
c2!(pat, [ Tuple::<'static>() ], "Tuple::<'static>()", "Tuple :: < 'static > ()");
c1!(pat, [ Tuple(x) ], "Tuple(x)");
c1!(pat, [ Tuple(..) ], "Tuple(..)");
c1!(pat, [ Tuple(x, ..) ], "Tuple(x, ..)");
c2!(pat,
[ <Struct as Trait>::Type() ],
"<Struct as Trait>::Type()",
"< Struct as Trait > :: Type()"
);
// PatKind::Or
c1!(pat, [ true | false ], "true | false");
c2!(pat, [ | true ], "true", "| true");
c2!(pat, [ |true| false ], "true | false", "| true | false");
// PatKind::Path
c2!(pat, [ crate::Path ], "crate::Path", "crate :: Path");
c2!(pat, [ Path::<u8> ], "Path::<u8>", "Path :: < u8 >");
c2!(pat, [ Path::<'static> ], "Path::<'static>", "Path :: < 'static >");
c2!(pat, [ <Struct as Trait>::Type ], "<Struct as Trait>::Type", "< Struct as Trait > :: Type");
// PatKind::Tuple
c1!(pat, [ () ], "()");
c1!(pat, [ (true,) ], "(true,)");
c1!(pat, [ (true, false) ], "(true, false)");
// PatKind::Box
c1!(pat, [ box pat ], "box pat");
// PatKind::Ref
c2!(pat, [ &pat ], "&pat", "& pat");
c2!(pat, [ &mut pat ], "&mut pat", "& mut pat");
// PatKind::Lit
c1!(pat, [ 1_000_i8 ], "1_000_i8");
// PatKind::Range
c2!(pat, [ ..1 ], "..1", ".. 1");
c2!(pat, [ 0.. ], "0..", "0 ..");
c2!(pat, [ 0..1 ], "0..1", "0 .. 1");
c2!(pat, [ 0..=1 ], "0..=1", "0 ..= 1");
c2!(pat, [ -2..=-1 ], "-2..=-1", "- 2 ..= - 1");
// PatKind::Slice
c1!(pat, [ [] ], "[]");
c1!(pat, [ [true] ], "[true]");
c2!(pat, [ [true,] ], "[true]", "[true,]");
c1!(pat, [ [true, false] ], "[true, false]");
// PatKind::Rest
c1!(pat, [ .. ], "..");
// PatKind::Paren
c1!(pat, [ (pat) ], "(pat)");
// PatKind::MacCall
c2!(pat, [ mac!(...) ], "mac!(...)", "mac! (...)");
c2!(pat, [ mac![...] ], "mac![...]", "mac! [...]");
c1!(pat, [ mac! { ... } ], "mac! { ... }");
}
#[test]
fn test_path() {
c1!(path, [ thing ], "thing");
c2!(path, [ m::thing ], "m::thing", "m :: thing");
c2!(path, [ self::thing ], "self::thing", "self :: thing");
c2!(path, [ crate::thing ], "crate::thing", "crate :: thing");
c2!(path, [ Self::thing ], "Self::thing", "Self :: thing");
c2!(path, [ Self<'static> ], "Self<'static>", "Self < 'static >");
c2!(path, [ Self::<'static> ], "Self<'static>", "Self :: < 'static >");
c1!(path, [ Self() ], "Self()");
c1!(path, [ Self() -> () ], "Self() -> ()");
}
#[test]
fn test_stmt() {
// StmtKind::Local
c2!(stmt, [ let _ ], "let _;", "let _");
c2!(stmt, [ let x = true ], "let x = true;", "let x = true");
c2!(stmt, [ let x: bool = true ], "let x: bool = true;", "let x : bool = true");
c2!(stmt, [ let (a, b) = (1, 2) ], "let (a, b) = (1, 2);", "let(a, b) = (1, 2)"); // FIXME
c2!(stmt,
[ let (a, b): (u32, u32) = (1, 2) ],
"let (a, b): (u32, u32) = (1, 2);",
"let(a, b) : (u32, u32) = (1, 2)"
);
// StmtKind::Item
c2!(stmt, [ struct S; ], "struct S;", "struct S ;");
c1!(stmt, [ struct S {} ], "struct S {}");
// StmtKind::Expr
c1!(stmt, [ loop {} ], "loop {}");
// StmtKind::Semi
c2!(stmt, [ 1 + 1 ], "1 + 1;", "1 + 1");
// StmtKind::Empty
c1!(stmt, [ ; ], ";");
// StmtKind::MacCall
c2!(stmt, [ mac!(...) ], "mac!(...)", "mac! (...)");
c2!(stmt, [ mac![...] ], "mac![...]", "mac! [...]");
c1!(stmt, [ mac! { ... } ], "mac! { ... }");
}
#[test]
fn test_ty() {
// TyKind::Slice
c1!(ty, [ [T] ], "[T]");
// TyKind::Array
c2!(ty, [ [T; 0] ], "[T; 0]", "[T ; 0]");
// TyKind::Ptr
c2!(ty, [ *const T ], "*const T", "* const T");
c2!(ty, [ *mut T ], "*mut T", "* mut T");
// TyKind::Ref
c2!(ty, [ &T ], "&T", "& T");
c2!(ty, [ &mut T ], "&mut T", "& mut T");
c2!(ty, [ &'a T ], "&'a T", "& 'a T");
c2!(ty, [ &'a mut [T] ], "&'a mut [T]", "& 'a mut [T]");
c2!(ty, [ &A<B<C<D<E>>>> ], "&A<B<C<D<E>>>>", "& A < B < C < D < E >> >>");
// TyKind::BareFn
c1!(ty, [ fn() ], "fn()");
c1!(ty, [ fn() -> () ], "fn() -> ()");
c1!(ty, [ fn(u8) ], "fn(u8)");
c2!(ty, [ fn(x: u8) ], "fn(x: u8)", "fn(x : u8)");
c2!(ty, [ for<> fn() ], "fn()", "for < > fn()");
c2!(ty, [ for<'a> fn() ], "for<'a> fn()", "for < 'a > fn()");
// TyKind::Never
c1!(ty, [ ! ], "!");
// TyKind::Tup
c1!(ty, [ () ], "()");
c1!(ty, [ (T,) ], "(T,)");
c1!(ty, [ (T, U) ], "(T, U)");
// TyKind::AnonStruct: untestable in isolation.
// TyKind::AnonUnion: untestable in isolation.
// TyKind::Path
c1!(ty, [ T ], "T");
c2!(ty, [ Ref<'a> ], "Ref<'a>", "Ref < 'a >");
c2!(ty, [ PhantomData<T> ], "PhantomData<T>", "PhantomData < T >");
c2!(ty, [ PhantomData::<T> ], "PhantomData<T>", "PhantomData :: < T >");
c2!(ty, [ Fn() -> ! ], "Fn() -> !", "Fn() ->!");
c2!(ty, [ Fn(u8) -> ! ], "Fn(u8) -> !", "Fn(u8) ->!"); // FIXME
c2!(ty, [ <Struct as Trait>::Type ], "<Struct as Trait>::Type", "< Struct as Trait > :: Type");
// TyKind::TraitObject
c1!(ty, [ dyn Send ], "dyn Send");
c1!(ty, [ dyn Send + 'a ], "dyn Send + 'a");
c1!(ty, [ dyn 'a + Send ], "dyn 'a + Send");
c2!(ty, [ dyn ?Sized ], "dyn ?Sized", "dyn ? Sized");
c2!(ty, [ dyn ~const Clone ], "dyn ~const Clone", "dyn ~ const Clone");
c2!(ty, [ dyn for<'a> Send ], "dyn for<'a> Send", "dyn for < 'a > Send");
// TyKind::ImplTrait
c1!(ty, [ impl Send ], "impl Send");
c1!(ty, [ impl Send + 'a ], "impl Send + 'a");
c1!(ty, [ impl 'a + Send ], "impl 'a + Send");
c2!(ty, [ impl ?Sized ], "impl ?Sized", "impl ? Sized");
c2!(ty, [ impl ~const Clone ], "impl ~const Clone", "impl ~ const Clone");
c2!(ty, [ impl for<'a> Send ], "impl for<'a> Send", "impl for < 'a > Send");
// TyKind::Paren
c1!(ty, [ (T) ], "(T)");
// TyKind::Typeof: unused for now.
// TyKind::Infer
c1!(ty, [ _ ], "_");
// TyKind::ImplicitSelf: there is no syntax for this.
// TyKind::MacCall
c2!(ty, [ mac!(...) ], "mac!(...)", "mac! (...)");
c2!(ty, [ mac![...] ], "mac![...]", "mac! [...]");
c1!(ty, [ mac! { ... } ], "mac! { ... }");
// TyKind::Err: untestable.
// TyKind::CVarArgs
// FIXME: todo
}
#[test]
fn test_vis() {
// VisibilityKind::Public
c2!(vis, [ pub ], "pub ", "pub");
// VisibilityKind::Restricted
c2!(vis, [ pub(crate) ], "pub(crate) ", "pub(crate)");
c2!(vis, [ pub(self) ], "pub(self) ", "pub(self)");
c2!(vis, [ pub(super) ], "pub(super) ", "pub(super)");
c2!(vis, [ pub(in crate) ], "pub(in crate) ", "pub(in crate)");
c2!(vis, [ pub(in self) ], "pub(in self) ", "pub(in self)");
c2!(vis, [ pub(in super) ], "pub(in super) ", "pub(in super)");
c2!(vis, [ pub(in path::to) ], "pub(in path::to) ", "pub(in path :: to)");
c2!(vis, [ pub(in ::path::to) ], "pub(in ::path::to) ", "pub(in :: path :: to)");
c2!(vis, [ pub(in self::path::to) ], "pub(in self::path::to) ", "pub(in self :: path :: to)");
c2!(vis,
[ pub(in super::path::to) ],
"pub(in super::path::to) ",
"pub(in super :: path :: to)"
);
// VisibilityKind::Inherited
// This one is different because directly calling `vis!` does not work.
macro_rules! inherited_vis { ($vis:vis struct) => { vis!($vis) }; }
assert_eq!(inherited_vis!(struct), "");
assert_eq!(stringify!(), "");
}
macro_rules! p {
([$($tt:tt)*], $s:literal) => {
assert_eq!(stringify!($($tt)*), $s);
};
}
#[test]
fn test_punct() {
// For all these cases, we must preserve spaces between the tokens.
// Otherwise, any old proc macro that parses pretty-printed code might glue
// together tokens that shouldn't be glued.
p!([ = = < < <= <= == == != != >= >= > > ], "= = < < <= <= == == != != >= >= > >");
p!([ && && & & || || | | ! ! ], "&& && & & || || | |!!"); // FIXME
p!([ ~ ~ @ @ # # ], "~ ~ @ @ # #");
p!([ . . .. .. ... ... ..= ..=], ".... .. ... ... ..= ..="); // FIXME
p!([ , , ; ; : : :: :: ], ",, ; ; : : :: ::"); // FIXME
p!([ -> -> <- <- => =>], "-> -> <- <- => =>");
p!([ $ $ ? ? ' ' ], "$$? ? ' '"); // FIXME
p!([ + + += += - - -= -= * * *= *= / / /= /= ], "+ + += += - - -= -= * * *= *= / / /= /=");
p!([ % % %= %= ^ ^ ^= ^= << << <<= <<= >> >> >>= >>= ],
"% % %= %= ^ ^ ^= ^= << << <<= <<= >> >> >>= >>=");
// For these one we must insert spaces between adjacent tokens, again due
// to proc macros.
p!([ +! ?= |> >>@ --> <-- $$ =====> ], "+! ? = | > >> @ - -> <- - $$== == =>"); // FIXME
p!([ ,; ;, ** @@ $+$ >< <> ?? +== ], ", ; ;, * * @ @ $+ $> < < > ? ? += ="); // FIXME
p!([ :#!@|$=&*,+;*~? ], ": #! @ | $= & *, + ; * ~ ?"); // FIXME
}
|