summary refs log tree commit diff
path: root/src/test/ui/macros/same-sequence-span.stderr
AgeCommit message (Collapse)AuthorLines
2020-02-06rustc_macros: don't limit the -Zmacro-backtrace suggestion to extern macros.Eduard-Mihai Burtescu-0/+2
2020-02-06rustc_errors: hide "in this macro invocation" when redundant, more explicitly.Eduard-Mihai Burtescu-4/+1
2019-10-15Stabilize proc macros generating `macro_rules` itemsVadim Petrochenkov-4/+4
2019-08-27proc_macro: Update `Span::def_site` to use the proc macro definition locationVadim Petrochenkov-4/+8
Which is no longer dummy and is available from metadata now.
2019-08-17Serialize additional data for procedural macrosAaron Hill-2/+8
Split off from #62855 This PR deerializes the declaration `Span` and attributes for all procedural macros from their underlying function definitions. This allows Rustdoc to properly render doc comments and source links when inlining procedural macros across crates
2019-07-25Implement slow-path for FirstSets::firstJulien Cretin-0/+34
When 2 or more sequences share the same span, we can't use the precomputed map for their first set. So we compute it recursively. Fixes #62831.