Skip to content

Commit e51661b

Browse files
committed
Auto merge of #30898 - petrochenkov:tvarfstab, r=alexcrichton
This wasn't done in #29083 because attributes weren't parsed on fields of tuple variant back then. r? @alexcrichton
2 parents 1f4e317 + 8ea7b88 commit e51661b

File tree

12 files changed

+45
-41
lines changed

12 files changed

+45
-41
lines changed

src/libcollections/borrow.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,13 @@ pub enum Cow<'a, B: ?Sized + 'a>
9595
{
9696
/// Borrowed data.
9797
#[stable(feature = "rust1", since = "1.0.0")]
98-
Borrowed(&'a B),
98+
Borrowed(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a B),
9999

100100
/// Owned data.
101101
#[stable(feature = "rust1", since = "1.0.0")]
102-
Owned(<B as ToOwned>::Owned),
102+
Owned(
103+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] <B as ToOwned>::Owned
104+
),
103105
}
104106

105107
#[stable(feature = "rust1", since = "1.0.0")]

src/libcollections/btree/map.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,15 @@ pub struct RangeMut<'a, K: 'a, V: 'a> {
126126
pub enum Entry<'a, K: 'a, V: 'a> {
127127
/// A vacant Entry
128128
#[stable(feature = "rust1", since = "1.0.0")]
129-
Vacant(VacantEntry<'a, K, V>),
129+
Vacant(
130+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] VacantEntry<'a, K, V>
131+
),
130132

131133
/// An occupied Entry
132134
#[stable(feature = "rust1", since = "1.0.0")]
133-
Occupied(OccupiedEntry<'a, K, V>),
135+
Occupied(
136+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] OccupiedEntry<'a, K, V>
137+
),
134138
}
135139

136140
/// A vacant Entry.

src/libcore/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub enum Option<T> {
169169
None,
170170
/// Some value `T`
171171
#[stable(feature = "rust1", since = "1.0.0")]
172-
Some(T)
172+
Some(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T)
173173
}
174174

175175
/////////////////////////////////////////////////////////////////////////////

src/libcore/result.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ use option::Option::{self, None, Some};
250250
pub enum Result<T, E> {
251251
/// Contains the success value
252252
#[stable(feature = "rust1", since = "1.0.0")]
253-
Ok(T),
253+
Ok(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
254254

255255
/// Contains the error value
256256
#[stable(feature = "rust1", since = "1.0.0")]
257-
Err(E)
257+
Err(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] E)
258258
}
259259

260260
/////////////////////////////////////////////////////////////////////////////

src/librustc/middle/stability.rs

+1-15
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ struct Annotator<'a, 'tcx: 'a> {
7777
parent_depr: Option<Deprecation>,
7878
access_levels: &'a AccessLevels,
7979
in_trait_impl: bool,
80-
in_enum: bool,
8180
}
8281

8382
impl<'a, 'tcx: 'a> Annotator<'a, 'tcx> {
@@ -208,7 +207,6 @@ impl<'a, 'tcx, 'v> Visitor<'v> for Annotator<'a, 'tcx> {
208207

209208
fn visit_item(&mut self, i: &Item) {
210209
let orig_in_trait_impl = self.in_trait_impl;
211-
let orig_in_enum = self.in_enum;
212210
let mut kind = AnnotationKind::Required;
213211
match i.node {
214212
// Inherent impls and foreign modules serve only as containers for other items,
@@ -223,22 +221,17 @@ impl<'a, 'tcx, 'v> Visitor<'v> for Annotator<'a, 'tcx> {
223221
self.in_trait_impl = true;
224222
}
225223
hir::ItemStruct(ref sd, _) => {
226-
self.in_enum = false;
227224
if !sd.is_struct() {
228225
self.annotate(sd.id(), &i.attrs, i.span, AnnotationKind::Required, |_| {})
229226
}
230227
}
231-
hir::ItemEnum(..) => {
232-
self.in_enum = true;
233-
}
234228
_ => {}
235229
}
236230

237231
self.annotate(i.id, &i.attrs, i.span, kind, |v| {
238232
intravisit::walk_item(v, i)
239233
});
240234
self.in_trait_impl = orig_in_trait_impl;
241-
self.in_enum = orig_in_enum;
242235
}
243236

244237
fn visit_trait_item(&mut self, ti: &hir::TraitItem) {
@@ -265,13 +258,7 @@ impl<'a, 'tcx, 'v> Visitor<'v> for Annotator<'a, 'tcx> {
265258
}
266259

267260
fn visit_struct_field(&mut self, s: &StructField) {
268-
// FIXME: This is temporary, can't use attributes with tuple variant fields until snapshot
269-
let kind = if self.in_enum && s.node.kind.is_unnamed() {
270-
AnnotationKind::Prohibited
271-
} else {
272-
AnnotationKind::Required
273-
};
274-
self.annotate(s.node.id, &s.node.attrs, s.span, kind, |v| {
261+
self.annotate(s.node.id, &s.node.attrs, s.span, AnnotationKind::Required, |v| {
275262
intravisit::walk_struct_field(v, s);
276263
});
277264
}
@@ -299,7 +286,6 @@ impl<'tcx> Index<'tcx> {
299286
parent_depr: None,
300287
access_levels: access_levels,
301288
in_trait_impl: false,
302-
in_enum: false,
303289
};
304290
annotator.annotate(ast::CRATE_NODE_ID, &krate.attrs, krate.span, AnnotationKind::Required,
305291
|v| intravisit::walk_crate(v, krate));

src/libstd/collections/hash/map.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -1346,11 +1346,15 @@ pub struct VacantEntry<'a, K: 'a, V: 'a> {
13461346
pub enum Entry<'a, K: 'a, V: 'a> {
13471347
/// An occupied Entry.
13481348
#[stable(feature = "rust1", since = "1.0.0")]
1349-
Occupied(OccupiedEntry<'a, K, V>),
1349+
Occupied(
1350+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] OccupiedEntry<'a, K, V>
1351+
),
13501352

13511353
/// A vacant Entry.
13521354
#[stable(feature = "rust1", since = "1.0.0")]
1353-
Vacant(VacantEntry<'a, K, V>),
1355+
Vacant(
1356+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] VacantEntry<'a, K, V>
1357+
),
13541358
}
13551359

13561360
/// Possible states of a VacantEntry.

src/libstd/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ pub enum VarError {
218218
/// valid unicode data. The found data is returned as a payload of this
219219
/// variant.
220220
#[stable(feature = "env", since = "1.0.0")]
221-
NotUnicode(OsString),
221+
NotUnicode(#[cfg_attr(not(stage0), stable(feature = "env", since = "1.0.0"))] OsString),
222222
}
223223

224224
#[stable(feature = "env", since = "1.0.0")]

src/libstd/io/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1175,23 +1175,23 @@ pub trait Seek {
11751175
pub enum SeekFrom {
11761176
/// Set the offset to the provided number of bytes.
11771177
#[stable(feature = "rust1", since = "1.0.0")]
1178-
Start(u64),
1178+
Start(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] u64),
11791179

11801180
/// Set the offset to the size of this object plus the specified number of
11811181
/// bytes.
11821182
///
11831183
/// It is possible to seek beyond the end of an object, but it's an error to
11841184
/// seek before byte 0.
11851185
#[stable(feature = "rust1", since = "1.0.0")]
1186-
End(i64),
1186+
End(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] i64),
11871187

11881188
/// Set the offset to the current position plus the specified number of
11891189
/// bytes.
11901190
///
11911191
/// It is possible to seek beyond the end of an object, but it's an error to
11921192
/// seek before byte 0.
11931193
#[stable(feature = "rust1", since = "1.0.0")]
1194-
Current(i64),
1194+
Current(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] i64),
11951195
}
11961196

11971197
fn read_until<R: BufRead + ?Sized>(r: &mut R, delim: u8, buf: &mut Vec<u8>)

src/libstd/net/addr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ use vec;
3232
pub enum SocketAddr {
3333
/// An IPv4 socket address which is a (ip, port) combination.
3434
#[stable(feature = "rust1", since = "1.0.0")]
35-
V4(SocketAddrV4),
35+
V4(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] SocketAddrV4),
3636
/// An IPv6 socket address
3737
#[stable(feature = "rust1", since = "1.0.0")]
38-
V6(SocketAddrV6),
38+
V6(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] SocketAddrV6),
3939
}
4040

4141
/// An IPv4 socket address which is a (ip, port) combination.

src/libstd/path.rs

+16-8
Original file line numberDiff line numberDiff line change
@@ -266,27 +266,33 @@ mod platform {
266266
pub enum Prefix<'a> {
267267
/// Prefix `\\?\`, together with the given component immediately following it.
268268
#[stable(feature = "rust1", since = "1.0.0")]
269-
Verbatim(&'a OsStr),
269+
Verbatim(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr),
270270

271271
/// Prefix `\\?\UNC\`, with the "server" and "share" components following it.
272272
#[stable(feature = "rust1", since = "1.0.0")]
273-
VerbatimUNC(&'a OsStr, &'a OsStr),
273+
VerbatimUNC(
274+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr,
275+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr,
276+
),
274277

275278
/// Prefix like `\\?\C:\`, for the given drive letter
276279
#[stable(feature = "rust1", since = "1.0.0")]
277-
VerbatimDisk(u8),
280+
VerbatimDisk(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] u8),
278281

279282
/// Prefix `\\.\`, together with the given component immediately following it.
280283
#[stable(feature = "rust1", since = "1.0.0")]
281-
DeviceNS(&'a OsStr),
284+
DeviceNS(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr),
282285

283286
/// Prefix `\\server\share`, with the given "server" and "share" components.
284287
#[stable(feature = "rust1", since = "1.0.0")]
285-
UNC(&'a OsStr, &'a OsStr),
288+
UNC(
289+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr,
290+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr,
291+
),
286292

287293
/// Prefix `C:` for the given disk drive.
288294
#[stable(feature = "rust1", since = "1.0.0")]
289-
Disk(u8),
295+
Disk(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] u8),
290296
}
291297

292298
impl<'a> Prefix<'a> {
@@ -528,7 +534,9 @@ pub enum Component<'a> {
528534
///
529535
/// Does not occur on Unix.
530536
#[stable(feature = "rust1", since = "1.0.0")]
531-
Prefix(PrefixComponent<'a>),
537+
Prefix(
538+
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] PrefixComponent<'a>
539+
),
532540

533541
/// The root directory component, appears after any prefix and before anything else
534542
#[stable(feature = "rust1", since = "1.0.0")]
@@ -544,7 +552,7 @@ pub enum Component<'a> {
544552

545553
/// A normal component, i.e. `a` and `b` in `a/b`
546554
#[stable(feature = "rust1", since = "1.0.0")]
547-
Normal(&'a OsStr),
555+
Normal(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a OsStr),
548556
}
549557

550558
impl<'a> Component<'a> {

src/libstd/sync/mpsc/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -385,12 +385,12 @@ pub enum TrySendError<T> {
385385
/// this is not a buffered channel, then there is no receiver available to
386386
/// acquire the data.
387387
#[stable(feature = "rust1", since = "1.0.0")]
388-
Full(T),
388+
Full(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
389389

390390
/// This channel's receiving half has disconnected, so the data could not be
391391
/// sent. The data is returned back to the callee in this case.
392392
#[stable(feature = "rust1", since = "1.0.0")]
393-
Disconnected(T),
393+
Disconnected(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
394394
}
395395

396396
enum Flavor<T> {

src/libstd/sys/common/poison.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub enum TryLockError<T> {
7171
/// The lock could not be acquired because another thread failed while holding
7272
/// the lock.
7373
#[stable(feature = "rust1", since = "1.0.0")]
74-
Poisoned(PoisonError<T>),
74+
Poisoned(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] PoisonError<T>),
7575
/// The lock could not be acquired at this time because the operation would
7676
/// otherwise block.
7777
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)