mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-31 15:47:31 +00:00
Auto merge of #13568 - noritada:fix/len-of-byte-string-with-escaped-newlines, r=Veykril
Fix the length displayed for byte string literals with escaped newlines This is a fix for the problem I reported earlier: "the length of byte strings containing escaped newlines is displayed two bytes longer when the first escaped character is a newline". I would appreciate it if you could review the fix. Many thanks. Closes #13567
This commit is contained in:
commit
d1c9775171
1 changed files with 40 additions and 6 deletions
|
@ -209,17 +209,19 @@ impl ast::String {
|
|||
let text = &text[self.text_range_between_quotes()? - self.syntax().text_range().start()];
|
||||
|
||||
let mut buf = String::new();
|
||||
let mut text_iter = text.chars();
|
||||
let mut prev_end = 0;
|
||||
let mut has_error = false;
|
||||
unescape_literal(text, Mode::Str, &mut |char_range, unescaped_char| match (
|
||||
unescaped_char,
|
||||
buf.capacity() == 0,
|
||||
) {
|
||||
(Ok(c), false) => buf.push(c),
|
||||
(Ok(c), true) if char_range.len() == 1 && Some(c) == text_iter.next() => (),
|
||||
(Ok(_), true) if char_range.len() == 1 && char_range.start == prev_end => {
|
||||
prev_end = char_range.end
|
||||
}
|
||||
(Ok(c), true) => {
|
||||
buf.reserve_exact(text.len());
|
||||
buf.push_str(&text[..char_range.start]);
|
||||
buf.push_str(&text[..prev_end]);
|
||||
buf.push(c);
|
||||
}
|
||||
(Err(_), _) => has_error = true,
|
||||
|
@ -252,17 +254,19 @@ impl ast::ByteString {
|
|||
let text = &text[self.text_range_between_quotes()? - self.syntax().text_range().start()];
|
||||
|
||||
let mut buf: Vec<u8> = Vec::new();
|
||||
let mut text_iter = text.chars();
|
||||
let mut prev_end = 0;
|
||||
let mut has_error = false;
|
||||
unescape_literal(text, Mode::ByteStr, &mut |char_range, unescaped_char| match (
|
||||
unescaped_char,
|
||||
buf.capacity() == 0,
|
||||
) {
|
||||
(Ok(c), false) => buf.push(c as u8),
|
||||
(Ok(c), true) if char_range.len() == 1 && Some(c) == text_iter.next() => (),
|
||||
(Ok(_), true) if char_range.len() == 1 && char_range.start == prev_end => {
|
||||
prev_end = char_range.end
|
||||
}
|
||||
(Ok(c), true) => {
|
||||
buf.reserve_exact(text.len());
|
||||
buf.extend_from_slice(text[..char_range.start].as_bytes());
|
||||
buf.extend_from_slice(text[..prev_end].as_bytes());
|
||||
buf.push(c as u8);
|
||||
}
|
||||
(Err(_), _) => has_error = true,
|
||||
|
@ -445,6 +449,36 @@ mod tests {
|
|||
check_string_value(r"\foobar", None);
|
||||
check_string_value(r"\nfoobar", "\nfoobar");
|
||||
check_string_value(r"C:\\Windows\\System32\\", "C:\\Windows\\System32\\");
|
||||
check_string_value(r"\x61bcde", "abcde");
|
||||
check_string_value(
|
||||
r"a\
|
||||
bcde", "abcde",
|
||||
);
|
||||
}
|
||||
|
||||
fn check_byte_string_value<'a, const N: usize>(
|
||||
lit: &str,
|
||||
expected: impl Into<Option<&'a [u8; N]>>,
|
||||
) {
|
||||
assert_eq!(
|
||||
ast::ByteString { syntax: make::tokens::literal(&format!("b\"{}\"", lit)) }
|
||||
.value()
|
||||
.as_deref(),
|
||||
expected.into().map(|value| &value[..])
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_byte_string_escape() {
|
||||
check_byte_string_value(r"foobar", b"foobar");
|
||||
check_byte_string_value(r"\foobar", None::<&[u8; 0]>);
|
||||
check_byte_string_value(r"\nfoobar", b"\nfoobar");
|
||||
check_byte_string_value(r"C:\\Windows\\System32\\", b"C:\\Windows\\System32\\");
|
||||
check_byte_string_value(r"\x61bcde", b"abcde");
|
||||
check_byte_string_value(
|
||||
r"a\
|
||||
bcde", b"abcde",
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue