about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/dollar-crate.stdout
AgeCommit message (Collapse)AuthorLines
2019-04-05Include trailing comma in multiline Debug representationDavid Tolnay-60/+60
This commit changes the behavior of Formatter::debug_struct, debug_tuple, debug_list, debug_set, and debug_map to render trailing commas in {:#?} mode, which is the dominant style in modern Rust code. Before: Language { name: "Rust", trailing_commas: false } After: Language { name: "Rust", trailing_commas: true, }
2018-12-19Do not interpret mismatches from pretty-printed `$crate` as token stream ↵Vadim Petrochenkov-56/+36
invalidation
2018-12-19Reintroduce special pretty-printing for `$crate` when it's necessary for ↵Vadim Petrochenkov-0/+260
proc macros