Skip to content

Commit 3d09b4a

Browse files
committed
Rename char::escape to char::escape_debug and add tracking issue
1 parent 68efea0 commit 3d09b4a

File tree

12 files changed

+50
-48
lines changed

12 files changed

+50
-48
lines changed

src/libcollections/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#![feature(allow_internal_unstable)]
3434
#![feature(box_patterns)]
3535
#![feature(box_syntax)]
36-
#![feature(char_escape)]
36+
#![cfg_attr(not(test), feature(char_escape_debug))]
3737
#![feature(core_intrinsics)]
3838
#![feature(dropck_parametricity)]
3939
#![feature(fmt_internals)]

src/libcollections/str.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1697,12 +1697,12 @@ impl str {
16971697
return s;
16981698
}
16991699

1700-
/// Escapes each char in `s` with `char::escape`.
1700+
/// Escapes each char in `s` with `char::escape_debug`.
17011701
#[unstable(feature = "str_escape",
17021702
reason = "return type may change to be an iterator",
17031703
issue = "27791")]
1704-
pub fn escape(&self) -> String {
1705-
self.chars().flat_map(|c| c.escape()).collect()
1704+
pub fn escape_debug(&self) -> String {
1705+
self.chars().flat_map(|c| c.escape_debug()).collect()
17061706
}
17071707

17081708
/// Escapes each char in `s` with `char::escape_default`.

src/libcollectionstest/str.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -704,17 +704,17 @@ fn test_escape_unicode() {
704704
}
705705

706706
#[test]
707-
fn test_escape() {
708-
assert_eq!("abc".escape_default(), "abc");
709-
assert_eq!("a c".escape_default(), "a c");
710-
assert_eq!("éèê".escape_default(), "éèê");
711-
assert_eq!("\r\n\t".escape_default(), "\\r\\n\\t");
712-
assert_eq!("'\"\\".escape_default(), "\\'\\\"\\\\");
713-
assert_eq!("\u{7f}\u{ff}".escape_default(), "\\u{7f}\u{ff}");
714-
assert_eq!("\u{100}\u{ffff}".escape_default(), "\u{100}\\u{ffff}");
715-
assert_eq!("\u{10000}\u{10ffff}".escape_default(), "\u{10000}\\u{10ffff}");
716-
assert_eq!("ab\u{200b}".escape_default(), "ab\\u{200b}");
717-
assert_eq!("\u{10d4ea}\r".escape_default(), "\\u{10d4ea}\\r");
707+
fn test_escape_debug() {
708+
assert_eq!("abc".escape_debug(), "abc");
709+
assert_eq!("a c".escape_debug(), "a c");
710+
assert_eq!("éèê".escape_debug(), "éèê");
711+
assert_eq!("\r\n\t".escape_debug(), "\\r\\n\\t");
712+
assert_eq!("'\"\\".escape_debug(), "\\'\\\"\\\\");
713+
assert_eq!("\u{7f}\u{ff}".escape_debug(), "\\u{7f}\u{ff}");
714+
assert_eq!("\u{100}\u{ffff}".escape_debug(), "\u{100}\\u{ffff}");
715+
assert_eq!("\u{10000}\u{10ffff}".escape_debug(), "\u{10000}\\u{10ffff}");
716+
assert_eq!("ab\u{200b}".escape_debug(), "ab\\u{200b}");
717+
assert_eq!("\u{10d4ea}\r".escape_debug(), "\\u{10d4ea}\\r");
718718
}
719719

720720
#[test]

src/libcore/char.rs

+12-12
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ pub trait CharExt {
264264
fn escape_unicode(self) -> EscapeUnicode;
265265
#[stable(feature = "core", since = "1.6.0")]
266266
fn escape_default(self) -> EscapeDefault;
267-
#[unstable(feature = "char_escape", issue = "0")]
268-
fn escape(self) -> Escape;
267+
#[unstable(feature = "char_escape_debug", issue = "35068")]
268+
fn escape_debug(self) -> EscapeDebug;
269269
#[stable(feature = "core", since = "1.6.0")]
270270
fn len_utf8(self) -> usize;
271271
#[stable(feature = "core", since = "1.6.0")]
@@ -330,7 +330,7 @@ impl CharExt for char {
330330
}
331331

332332
#[inline]
333-
fn escape(self) -> Escape {
333+
fn escape_debug(self) -> EscapeDebug {
334334
let init_state = match self {
335335
'\t' => EscapeDefaultState::Backslash('t'),
336336
'\r' => EscapeDefaultState::Backslash('r'),
@@ -339,7 +339,7 @@ impl CharExt for char {
339339
c if is_printable(c) => EscapeDefaultState::Char(c),
340340
c => EscapeDefaultState::Unicode(c.escape_unicode()),
341341
};
342-
Escape(EscapeDefault { state: init_state })
342+
EscapeDebug(EscapeDefault { state: init_state })
343343
}
344344

345345
#[inline]
@@ -618,24 +618,24 @@ impl ExactSizeIterator for EscapeDefault {
618618

619619
/// An iterator that yields the literal escape code of a `char`.
620620
///
621-
/// This `struct` is created by the [`escape()`] method on [`char`]. See its
621+
/// This `struct` is created by the [`escape_debug()`] method on [`char`]. See its
622622
/// documentation for more.
623623
///
624-
/// [`escape()`]: ../../std/primitive.char.html#method.escape
624+
/// [`escape_debug()`]: ../../std/primitive.char.html#method.escape_debug
625625
/// [`char`]: ../../std/primitive.char.html
626-
#[unstable(feature = "char_escape", issue = "0")]
626+
#[unstable(feature = "char_escape_debug", issue = "35068")]
627627
#[derive(Clone, Debug)]
628-
pub struct Escape(EscapeDefault);
628+
pub struct EscapeDebug(EscapeDefault);
629629

630-
#[unstable(feature = "char_escape", issue = "0")]
631-
impl Iterator for Escape {
630+
#[unstable(feature = "char_escape_debug", issue = "35068")]
631+
impl Iterator for EscapeDebug {
632632
type Item = char;
633633
fn next(&mut self) -> Option<char> { self.0.next() }
634634
fn size_hint(&self) -> (usize, Option<usize>) { self.0.size_hint() }
635635
}
636636

637-
#[unstable(feature = "char_escape", issue = "0")]
638-
impl ExactSizeIterator for Escape { }
637+
#[unstable(feature = "char_escape_debug", issue = "35068")]
638+
impl ExactSizeIterator for EscapeDebug { }
639639

640640
/// An iterator over `u8` entries represending the UTF-8 encoding of a `char`
641641
/// value.

src/libcore/fmt/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ impl Debug for str {
13831383
f.write_char('"')?;
13841384
let mut from = 0;
13851385
for (i, c) in self.char_indices() {
1386-
let esc = c.escape();
1386+
let esc = c.escape_debug();
13871387
// If char needs escaping, flush backlog so far and write, else skip
13881388
if esc.len() != 1 {
13891389
f.write_str(&self[from..i])?;
@@ -1409,7 +1409,7 @@ impl Display for str {
14091409
impl Debug for char {
14101410
fn fmt(&self, f: &mut Formatter) -> Result {
14111411
f.write_char('\'')?;
1412-
for c in self.escape() {
1412+
for c in self.escape_debug() {
14131413
f.write_char(c)?
14141414
}
14151415
f.write_char('\'')

src/libcoretest/char.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ fn test_is_digit() {
124124
}
125125

126126
#[test]
127-
fn test_escape() {
127+
fn test_escape_debug() {
128128
fn string(c: char) -> String {
129-
c.escape().collect()
129+
c.escape_debug().collect()
130130
}
131131
let s = string('\n');
132132
assert_eq!(s, "\\n");

src/libcoretest/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#![feature(borrow_state)]
1515
#![feature(box_syntax)]
1616
#![feature(cell_extras)]
17+
#![feature(char_escape_debug)]
1718
#![feature(const_fn)]
1819
#![feature(core_private_bignum)]
1920
#![feature(core_private_diy_float)]
@@ -29,10 +30,10 @@
2930
#![feature(slice_patterns)]
3031
#![feature(step_by)]
3132
#![feature(test)]
33+
#![feature(try_from)]
3234
#![feature(unboxed_closures)]
3335
#![feature(unicode)]
3436
#![feature(unique)]
35-
#![feature(try_from)]
3637

3738
extern crate core;
3839
extern crate test;

src/librustc_unicode/char.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use tables::{conversions, derived_property, general_category, property};
3636
#[stable(feature = "rust1", since = "1.0.0")]
3737
pub use core::char::{MAX, from_digit, from_u32, from_u32_unchecked};
3838
#[stable(feature = "rust1", since = "1.0.0")]
39-
pub use core::char::{EncodeUtf16, EncodeUtf8, Escape, EscapeDefault, EscapeUnicode};
39+
pub use core::char::{EncodeUtf16, EncodeUtf8, EscapeDebug, EscapeDefault, EscapeUnicode};
4040

4141
// unstable reexports
4242
#[unstable(feature = "decode_utf8", issue = "33906")]
@@ -296,10 +296,10 @@ impl char {
296296
///
297297
/// assert_eq!(quote, "\\n");
298298
/// ```
299-
#[unstable(feature = "char_escape", issue = "0")]
299+
#[unstable(feature = "char_escape_debug", issue = "35068")]
300300
#[inline]
301-
pub fn escape(self) -> Escape {
302-
C::escape(self)
301+
pub fn escape_debug(self) -> EscapeDebug {
302+
C::escape_debug(self)
303303
}
304304

305305
/// Returns an iterator that yields the literal escape code of a `char`.

src/librustc_unicode/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#![cfg_attr(not(stage0), deny(warnings))]
3333
#![no_std]
3434

35-
#![feature(char_escape)]
35+
#![feature(char_escape_debug)]
3636
#![feature(core_char_ext)]
3737
#![feature(decode_utf8)]
3838
#![feature(lang_items)]

src/libstd/lib.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,9 @@
218218
#![feature(associated_consts)]
219219
#![feature(borrow_state)]
220220
#![feature(box_syntax)]
221-
#![feature(cfg_target_vendor)]
222221
#![feature(cfg_target_thread_local)]
222+
#![feature(cfg_target_vendor)]
223+
#![feature(char_escape_debug)]
223224
#![feature(char_internals)]
224225
#![feature(collections)]
225226
#![feature(collections_bound)]
@@ -229,10 +230,10 @@
229230
#![feature(dropck_parametricity)]
230231
#![feature(float_extras)]
231232
#![feature(float_from_str_radix)]
232-
#![feature(fnbox)]
233233
#![feature(fn_traits)]
234-
#![feature(heap_api)]
234+
#![feature(fnbox)]
235235
#![feature(hashmap_hasher)]
236+
#![feature(heap_api)]
236237
#![feature(inclusive_range)]
237238
#![feature(int_error_internals)]
238239
#![feature(into_cow)]
@@ -242,17 +243,19 @@
242243
#![feature(linkage)]
243244
#![feature(macro_reexport)]
244245
#![cfg_attr(test, feature(map_values_mut))]
246+
#![feature(needs_panic_runtime)]
245247
#![feature(num_bits_bytes)]
246248
#![feature(old_wrapping)]
247249
#![feature(on_unimplemented)]
248250
#![feature(oom)]
249251
#![feature(optin_builtin_traits)]
250252
#![feature(panic_unwind)]
251253
#![feature(placement_in_syntax)]
254+
#![feature(question_mark)]
252255
#![feature(rand)]
253256
#![feature(raw)]
254-
#![feature(repr_simd)]
255257
#![feature(reflect_marker)]
258+
#![feature(repr_simd)]
256259
#![feature(rustc_attrs)]
257260
#![feature(shared)]
258261
#![feature(sip_hash_13)]
@@ -266,16 +269,14 @@
266269
#![feature(str_utf16)]
267270
#![feature(test, rustc_private)]
268271
#![feature(thread_local)]
272+
#![feature(try_from)]
269273
#![feature(unboxed_closures)]
270274
#![feature(unicode)]
271275
#![feature(unique)]
272276
#![feature(unsafe_no_drop_flag, filling_drop)]
273277
#![feature(unwind_attributes)]
274278
#![feature(vec_push_all)]
275279
#![feature(zero_one)]
276-
#![feature(question_mark)]
277-
#![feature(try_from)]
278-
#![feature(needs_panic_runtime)]
279280

280281
// Issue# 30592: Systematically use alloc_system during stage0 since jemalloc
281282
// might be unavailable or disabled

src/libstd/sys/common/wtf8.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ impl fmt::Debug for Wtf8 {
390390
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
391391
fn write_str_escaped(f: &mut fmt::Formatter, s: &str) -> fmt::Result {
392392
use fmt::Write;
393-
for c in s.chars().flat_map(|c| c.escape_default()) {
393+
for c in s.chars().flat_map(|c| c.escape_debug()) {
394394
f.write_char(c)?
395395
}
396396
Ok(())
@@ -1064,9 +1064,9 @@ mod tests {
10641064

10651065
#[test]
10661066
fn wtf8buf_show() {
1067-
let mut string = Wtf8Buf::from_str("a\té 💩\r");
1067+
let mut string = Wtf8Buf::from_str("a\té \u{7f}💩\r");
10681068
string.push(CodePoint::from_u32(0xD800).unwrap());
1069-
assert_eq!(format!("{:?}", string), r#""a\t\u{e9} \u{1f4a9}\r\u{D800}""#);
1069+
assert_eq!(format!("{:?}", string), "\"a\\\\u{7f}\u{1f4a9}\\r\\u{D800}\"");
10701070
}
10711071

10721072
#[test]

src/test/run-pass/sync-send-iterators-in-libcore.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ macro_rules! is_sync_send {
6767

6868
fn main() {
6969
// for char.rs
70-
all_sync_send!("Я", escape_default, escape_unicode);
70+
all_sync_send!("Я", escape_debug, escape_default, escape_unicode);
7171

7272
// for iter.rs
7373
all_sync_send_mutable_ref!([1], iter);

0 commit comments

Comments
 (0)