mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
Fix a fuzzing bug and add Cargo.lock to the fuzzing directory
This commit is contained in:
parent
f3f073804c
commit
054f22f231
3 changed files with 532 additions and 2 deletions
|
@ -70,7 +70,7 @@ pub(super) fn validate_char_component(
|
|||
|
||||
fn validate_ascii_escape(text: &str, range: TextRange, errors: &mut Vec<SyntaxError>) {
|
||||
if text.len() == 1 {
|
||||
// Escape sequence consists only of leading `\`
|
||||
// Escape sequence consists only of leading `\` (only occurs at EOF, otherwise e.g. '\' is treated as an unclosed char containing a single quote `'`)
|
||||
errors.push(SyntaxError::new(EmptyAsciiEscape, range));
|
||||
} else {
|
||||
let escape_code = text.chars().skip(1).next().unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue