We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0537b1a commit 63ce115Copy full SHA for 63ce115
literal-escaper/README.md
@@ -1,4 +1,4 @@
1
# literal-escaper
2
3
This crate provides code to unescape string literals. It is used by `rustc_lexer`
4
-and `proc-macro`.
+and `proc_macro`.
proc_macro/src/lib.rs
@@ -61,6 +61,7 @@ use crate::escape::{EscapeOptions, escape_bytes};
61
62
/// Errors returned when trying to retrieve a literal unescaped value.
63
#[unstable(feature = "proc_macro_value", issue = "136652")]
64
+#[derive(Debug, PartialEq, Eq)]
65
pub enum ConversionErrorKind {
66
/// The literal failed to be escaped, take a look at [`EscapeError`] for more information.
67
FailedToUnescape(EscapeError),
0 commit comments