25
25
#![ feature( optin_builtin_traits) ]
26
26
#![ allow( unused_attributes) ]
27
27
#![ feature( specialization) ]
28
+ #![ feature( staged_api) ]
28
29
29
30
use std:: borrow:: Cow ;
30
31
use std:: cell:: { Cell , RefCell } ;
@@ -60,13 +61,20 @@ pub type FileName = String;
60
61
/// range between files.
61
62
#[ derive( Clone , Copy , Hash , PartialEq , Eq , Ord , PartialOrd ) ]
62
63
pub struct Span {
63
- lo : BytePos ,
64
- hi : BytePos ,
64
+ #[ unstable( feature = "rustc_private" , issue = "27812" ) ]
65
+ #[ rustc_deprecated( since = "1.21" , reason = "use getters/setters instead" ) ]
66
+ pub lo : BytePos ,
67
+ #[ unstable( feature = "rustc_private" , issue = "27812" ) ]
68
+ #[ rustc_deprecated( since = "1.21" , reason = "use getters/setters instead" ) ]
69
+ pub hi : BytePos ,
65
70
/// Information about where the macro came from, if this piece of
66
71
/// code was created by a macro expansion.
67
- ctxt : SyntaxContext ,
72
+ #[ unstable( feature = "rustc_private" , issue = "27812" ) ]
73
+ #[ rustc_deprecated( since = "1.21" , reason = "use getters/setters instead" ) ]
74
+ pub ctxt : SyntaxContext ,
68
75
}
69
76
77
+ #[ allow( deprecated) ]
70
78
pub const DUMMY_SP : Span = Span { lo : BytePos ( 0 ) , hi : BytePos ( 0 ) , ctxt : NO_EXPANSION } ;
71
79
72
80
/// A collection of spans. Spans have two orthogonal attributes:
@@ -82,11 +90,13 @@ pub struct MultiSpan {
82
90
}
83
91
84
92
impl Span {
93
+ #[ allow( deprecated) ]
85
94
#[ inline]
86
95
pub fn new ( lo : BytePos , hi : BytePos , ctxt : SyntaxContext ) -> Self {
87
96
if lo <= hi { Span { lo, hi, ctxt } } else { Span { lo : hi, hi : lo, ctxt } }
88
97
}
89
98
99
+ #[ allow( deprecated) ]
90
100
#[ inline]
91
101
pub fn lo ( self ) -> BytePos {
92
102
self . lo
@@ -95,6 +105,7 @@ impl Span {
95
105
pub fn with_lo ( self , lo : BytePos ) -> Span {
96
106
Span :: new ( lo, self . hi ( ) , self . ctxt ( ) )
97
107
}
108
+ #[ allow( deprecated) ]
98
109
#[ inline]
99
110
pub fn hi ( self ) -> BytePos {
100
111
self . hi
@@ -103,6 +114,7 @@ impl Span {
103
114
pub fn with_hi ( self , hi : BytePos ) -> Span {
104
115
Span :: new ( self . lo ( ) , hi, self . ctxt ( ) )
105
116
}
117
+ #[ allow( deprecated) ]
106
118
#[ inline]
107
119
pub fn ctxt ( self ) -> SyntaxContext {
108
120
self . ctxt
0 commit comments