|
25 | 25 | #[macro_use]
|
26 | 26 | extern crate rustc_macros;
|
27 | 27 |
|
| 28 | +#[macro_use] |
| 29 | +extern crate tracing; |
| 30 | + |
28 | 31 | use rustc_data_structures::AtomicRef;
|
29 | 32 | use rustc_macros::HashStable_Generic;
|
30 | 33 | use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
@@ -782,13 +785,30 @@ impl Span {
|
782 | 785 | /// ^^^^^^^^^^^^^^^^^
|
783 | 786 | /// ```
|
784 | 787 | pub fn until(self, end: Span) -> Span {
|
785 |
| - let span = self.data(); |
786 |
| - let end = end.data(); |
| 788 | + // Most of this function's body is copied from `to`. |
| 789 | + // We can't just do `self.to(end.shrink_to_lo())`, |
| 790 | + // because to also does some magic where it uses min/max so |
| 791 | + // it can handle overlapping spans. Some advanced mis-use of |
| 792 | + // `until` with different ctxts makes this visible. |
| 793 | + let span_data = self.data(); |
| 794 | + let end_data = end.data(); |
| 795 | + // FIXME(jseyfried): `self.ctxt` should always equal `end.ctxt` here (cf. issue #23480). |
| 796 | + // Return the macro span on its own to avoid weird diagnostic output. It is preferable to |
| 797 | + // have an incomplete span than a completely nonsensical one. |
| 798 | + if span_data.ctxt != end_data.ctxt { |
| 799 | + if span_data.ctxt == SyntaxContext::root() { |
| 800 | + return end; |
| 801 | + } else if end_data.ctxt == SyntaxContext::root() { |
| 802 | + return self; |
| 803 | + } |
| 804 | + // Both spans fall within a macro. |
| 805 | + // FIXME(estebank): check if it is the *same* macro. |
| 806 | + } |
787 | 807 | Span::new(
|
788 |
| - span.lo, |
789 |
| - end.lo, |
790 |
| - if end.ctxt == SyntaxContext::root() { end.ctxt } else { span.ctxt }, |
791 |
| - if span.parent == end.parent { span.parent } else { None }, |
| 808 | + span_data.lo, |
| 809 | + end_data.lo, |
| 810 | + if end_data.ctxt == SyntaxContext::root() { end_data.ctxt } else { span_data.ctxt }, |
| 811 | + if span_data.parent == end_data.parent { span_data.parent } else { None }, |
792 | 812 | )
|
793 | 813 | }
|
794 | 814 |
|
|
0 commit comments