about summary refs log tree commit diff
path: root/src/test/rustdoc/macro_rules-matchers.rs
AgeCommit message (Collapse)AuthorLines
2021-07-03rustc_ast_pretty: Don't print space after `$`Noah Lev-5/+9
For example, this code: $arg:expr used to be pretty-printed as: $ arg : expr but is now pretty-printed as: $arg : expr
2021-07-03Pretty-print macro matchers instead of using source codeNoah Lev-5/+4
The output is not quite as nice as it used to be, but it does work.
2021-06-28Add regression test for #86208Noah Lev-0/+42
This test does not test the output as well as I would like, but I think I am limited by htmldocck. I would really just like to strip all the HTML tags from the output for the sake of the different `@has` checks, but that doesn't seem to be currently possible.