12
12
//! propagating default levels lexically from parent to children ast nodes.
13
13
14
14
pub use self :: StabilityLevel :: * ;
15
- use self :: AnnotationKind :: * ;
16
15
17
16
use session:: Session ;
18
17
use lint;
@@ -52,11 +51,11 @@ impl StabilityLevel {
52
51
#[ derive( PartialEq ) ]
53
52
enum AnnotationKind {
54
53
// Annotation is required if not inherited from unstable parents
55
- AnnRequired ,
54
+ Required ,
56
55
// Annotation is useless, reject it
57
- AnnProhibited ,
56
+ Prohibited ,
58
57
// Annotation itself is useless, but it can be propagated to children
59
- AnnContainer ,
58
+ Container ,
60
59
}
61
60
62
61
/// A stability index, giving the stability level for items and methods.
@@ -91,8 +90,10 @@ impl<'a, 'tcx: 'a> Annotator<'a, 'tcx> {
91
90
if let Some ( mut stab) = attr:: find_stability ( self . tcx . sess . diagnostic ( ) ,
92
91
attrs, item_sp) {
93
92
// Error if prohibited, or can't inherit anything from a container
94
- if kind == AnnProhibited ||
95
- kind == AnnContainer && stab. level . is_stable ( ) && stab. depr . is_none ( ) {
93
+ if kind == AnnotationKind :: Prohibited ||
94
+ ( kind == AnnotationKind :: Container &&
95
+ stab. level . is_stable ( ) &&
96
+ stab. depr . is_none ( ) ) {
96
97
self . tcx . sess . span_err ( item_sp, "This stability annotation is useless" ) ;
97
98
}
98
99
@@ -141,7 +142,7 @@ impl<'a, 'tcx: 'a> Annotator<'a, 'tcx> {
141
142
self . parent = parent;
142
143
} else {
143
144
debug ! ( "annotate: not found, parent = {:?}" , self . parent) ;
144
- let mut is_error = kind == AnnRequired &&
145
+ let mut is_error = kind == AnnotationKind :: Required &&
145
146
self . export_map . contains ( & id) &&
146
147
!self . tcx . sess . opts . test ;
147
148
if let Some ( stab) = self . parent {
@@ -176,23 +177,23 @@ impl<'a, 'tcx, 'v> Visitor<'v> for Annotator<'a, 'tcx> {
176
177
fn visit_item ( & mut self , i : & Item ) {
177
178
let orig_in_trait_impl = self . in_trait_impl ;
178
179
let orig_in_enum = self . in_enum ;
179
- let mut kind = AnnRequired ;
180
+ let mut kind = AnnotationKind :: Required ;
180
181
match i. node {
181
182
// Inherent impls and foreign modules serve only as containers for other items,
182
183
// they don't have their own stability. They still can be annotated as unstable
183
184
// and propagate this unstability to children, but this annotation is completely
184
185
// optional. They inherit stability from their parents when unannotated.
185
186
hir:: ItemImpl ( _, _, _, None , _, _) | hir:: ItemForeignMod ( ..) => {
186
187
self . in_trait_impl = false ;
187
- kind = AnnContainer ;
188
+ kind = AnnotationKind :: Container ;
188
189
}
189
190
hir:: ItemImpl ( _, _, _, Some ( _) , _, _) => {
190
191
self . in_trait_impl = true ;
191
192
}
192
193
hir:: ItemStruct ( ref sd, _) => {
193
194
self . in_enum = false ;
194
195
if !sd. is_struct ( ) {
195
- self . annotate ( sd. id ( ) , & i. attrs , i. span , AnnRequired , |_| { } )
196
+ self . annotate ( sd. id ( ) , & i. attrs , i. span , AnnotationKind :: Required , |_| { } )
196
197
}
197
198
}
198
199
hir:: ItemEnum ( ..) => {
@@ -209,45 +210,49 @@ impl<'a, 'tcx, 'v> Visitor<'v> for Annotator<'a, 'tcx> {
209
210
}
210
211
211
212
fn visit_trait_item ( & mut self , ti : & hir:: TraitItem ) {
212
- self . annotate ( ti. id , & ti. attrs , ti. span , AnnRequired , |v| {
213
+ self . annotate ( ti. id , & ti. attrs , ti. span , AnnotationKind :: Required , |v| {
213
214
visit:: walk_trait_item ( v, ti) ;
214
215
} ) ;
215
216
}
216
217
217
218
fn visit_impl_item ( & mut self , ii : & hir:: ImplItem ) {
218
- let kind = if self . in_trait_impl { AnnProhibited } else { AnnRequired } ;
219
+ let kind = if self . in_trait_impl {
220
+ AnnotationKind :: Prohibited
221
+ } else {
222
+ AnnotationKind :: Required
223
+ } ;
219
224
self . annotate ( ii. id , & ii. attrs , ii. span , kind, |v| {
220
225
visit:: walk_impl_item ( v, ii) ;
221
226
} ) ;
222
227
}
223
228
224
229
fn visit_variant ( & mut self , var : & Variant , g : & ' v Generics , item_id : NodeId ) {
225
- self . annotate ( var. node . data . id ( ) , & var. node . attrs , var. span , AnnRequired , |v| {
230
+ self . annotate ( var. node . data . id ( ) , & var. node . attrs , var. span , AnnotationKind :: Required , |v| {
226
231
visit:: walk_variant ( v, var, g, item_id) ;
227
232
} )
228
233
}
229
234
230
235
fn visit_struct_field ( & mut self , s : & StructField ) {
231
236
// FIXME: This is temporary, can't use attributes with tuple variant fields until snapshot
232
237
let kind = if self . in_enum && s. node . kind . is_unnamed ( ) {
233
- AnnProhibited
238
+ AnnotationKind :: Prohibited
234
239
} else {
235
- AnnRequired
240
+ AnnotationKind :: Required
236
241
} ;
237
242
self . annotate ( s. node . id , & s. node . attrs , s. span , kind, |v| {
238
243
visit:: walk_struct_field ( v, s) ;
239
244
} ) ;
240
245
}
241
246
242
247
fn visit_foreign_item ( & mut self , i : & hir:: ForeignItem ) {
243
- self . annotate ( i. id , & i. attrs , i. span , AnnRequired , |v| {
248
+ self . annotate ( i. id , & i. attrs , i. span , AnnotationKind :: Required , |v| {
244
249
visit:: walk_foreign_item ( v, i) ;
245
250
} ) ;
246
251
}
247
252
248
253
fn visit_macro_def ( & mut self , md : & ' v hir:: MacroDef ) {
249
254
if md. imported_from . is_none ( ) {
250
- self . annotate ( md. id , & md. attrs , md. span , AnnRequired , |_| { } ) ;
255
+ self . annotate ( md. id , & md. attrs , md. span , AnnotationKind :: Required , |_| { } ) ;
251
256
}
252
257
}
253
258
}
@@ -263,7 +268,7 @@ impl<'tcx> Index<'tcx> {
263
268
in_trait_impl : false ,
264
269
in_enum : false ,
265
270
} ;
266
- annotator. annotate ( ast:: CRATE_NODE_ID , & krate. attrs , krate. span , AnnRequired ,
271
+ annotator. annotate ( ast:: CRATE_NODE_ID , & krate. attrs , krate. span , AnnotationKind :: Required ,
267
272
|v| visit:: walk_crate ( v, krate) ) ;
268
273
}
269
274
0 commit comments