Skip to content

Commit 0ea0565

Browse files
committed
Revert "Detect NulInCStr error earlier."
This reverts commit 6001c50.
1 parent ef6e6df commit 0ea0565

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

crates/parser/src/lexed_str.rs

-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@ fn error_to_diagnostic_message(error: EscapeError, mode: Mode) -> &'static str {
369369
"non-ASCII character in byte string literal"
370370
}
371371
EscapeError::NonAsciiCharInByte => "non-ASCII character in raw byte string literal",
372-
EscapeError::NulInCStr => "null character in C string literal",
373372
EscapeError::UnskippedWhitespaceWarning => "",
374373
EscapeError::MultipleSkippedLinesWarning => "",
375374
}

crates/syntax/src/validation.rs

-3
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ fn rustc_unescape_error_to_string(err: unescape::EscapeError) -> (&'static str,
106106
EE::NonAsciiCharInByte => {
107107
"Byte literals must not contain non-ASCII characters"
108108
}
109-
EE::NulInCStr => {
110-
"C strings literals must not contain null characters"
111-
}
112109
EE::UnskippedWhitespaceWarning => "Whitespace after this escape is not skipped",
113110
EE::MultipleSkippedLinesWarning => "Multiple lines are skipped by this escape",
114111

0 commit comments

Comments
 (0)