File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -352,14 +352,14 @@ impl Span {
352
352
353
353
/// Creates a new span with the same line/column information as `self` but
354
354
/// that resolves symbols as though it were at `other`.
355
- #[ unstable ( feature = "proc_macro_span " , issue = "54725 " ) ]
355
+ #[ stable ( feature = "proc_macro_span_resolved_at " , since = "1.43.0 " ) ]
356
356
pub fn resolved_at ( & self , other : Span ) -> Span {
357
357
Span ( self . 0 . resolved_at ( other. 0 ) )
358
358
}
359
359
360
360
/// Creates a new span with the same name resolution behavior as `self` but
361
361
/// with the line/column information of `other`.
362
- #[ unstable ( feature = "proc_macro_span " , issue = "54725 " ) ]
362
+ #[ stable ( feature = "proc_macro_span_located_at " , since = "1.43.0 " ) ]
363
363
pub fn located_at ( & self , other : Span ) -> Span {
364
364
other. resolved_at ( * self )
365
365
}
You can’t perform that action at this time.
0 commit comments