about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/capture-macro-rules-invoke.stdout
AgeCommit message (Collapse)AuthorLines
2020-09-12Properly encode spans with a dummy location and non-root `SyntaxContext`Aaron Hill-22/+22
Previously, we would throw away the `SyntaxContext` of any span with a dummy location during metadata encoding. This commit makes metadata Span encoding consistent with incr-cache Span encoding - an 'invalid span' tag is only used when it doesn't lose any information.
2020-09-10Fully integrate token collection for additional AST structsAaron Hill-7/+296
This commit contains miscellaneous changes that don't fit into any of the other commits in this PR
2020-08-20Capture tokens for Pat used in macro_rules! argumentAaron Hill-0/+41
This extends PR #73293 to handle patterns (Pat). Unlike expressions, patterns do not support custom attributes, so we only need to capture tokens during macro_rules! argument parsing.