Skip to content

Commit f0174fc

Browse files
committedJun 8, 2016
use the slice_pat hack in libstd too
1 parent 9b1abf5 commit f0174fc

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed
 

‎src/libstd/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -467,3 +467,15 @@ pub mod __rand {
467467
// the rustdoc documentation for primitive types. Using `include!`
468468
// because rustdoc only looks for these modules at the crate level.
469469
include!("primitive_docs.rs");
470+
471+
// FIXME(stage0): remove this after a snapshot
472+
// HACK: this is needed because the interpretation of slice
473+
// patterns changed between stage0 and now.
474+
#[cfg(stage0)]
475+
fn slice_pat<'a, 'b, T>(t: &'a &'b [T]) -> &'a &'b [T] {
476+
t
477+
}
478+
#[cfg(not(stage0))]
479+
fn slice_pat<'a, 'b, T>(t: &'a &'b [T]) -> &'b [T] {
480+
*t
481+
}

‎src/libstd/sys/common/wtf8.rs

+6-15
Original file line numberDiff line numberDiff line change
@@ -560,20 +560,15 @@ impl Wtf8 {
560560
}
561561
}
562562

563-
// FIXME(stage0): use slice patterns after snapshot
564563
#[inline]
565564
fn final_lead_surrogate(&self) -> Option<u16> {
566565
let len = self.len();
567566
if len < 3 {
568567
return None
569568
}
570-
if self.bytes[len-3] == 0xed &&
571-
self.bytes[len-2] >= 0xa0 &&
572-
self.bytes[len-2] <= 0xaf
573-
{
574-
Some(decode_surrogate(self.bytes[len-2], self.bytes[len-1]))
575-
} else {
576-
None
569+
match ::slice_pat(&&self.bytes[(len - 3)..]) {
570+
&[0xED, b2 @ 0xA0...0xAF, b3] => Some(decode_surrogate(b2, b3)),
571+
_ => None
577572
}
578573
}
579574

@@ -583,13 +578,9 @@ impl Wtf8 {
583578
if len < 3 {
584579
return None
585580
}
586-
if self.bytes[0] == 0xed &&
587-
self.bytes[1] >= 0xb0 &&
588-
self.bytes[1] <= 0xbf
589-
{
590-
Some(decode_surrogate(self.bytes[1], self.bytes[2]))
591-
} else {
592-
None
581+
match ::slice_pat(&&self.bytes[..3]) {
582+
&[0xED, b2 @ 0xB0...0xBF, b3] => Some(decode_surrogate(b2, b3)),
583+
_ => None
593584
}
594585
}
595586
}

‎src/libstd/sys/windows/fs.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ impl Drop for FindNextFileHandle {
117117

118118
impl DirEntry {
119119
fn new(root: &Arc<PathBuf>, wfd: &c::WIN32_FIND_DATAW) -> Option<DirEntry> {
120-
match &wfd.cFileName[0..3] {
120+
match ::slice_pat(&&wfd.cFileName[0..3]) {
121121
// check for '.' and '..'
122-
[46, 0, ..] |
123-
[46, 46, 0, ..] => return None,
122+
&[46, 0, ..] |
123+
&[46, 46, 0, ..] => return None,
124124
_ => {}
125125
}
126126

0 commit comments

Comments
 (0)
Please sign in to comment.