Escape characters in builtin macros correctly
This commit is contained in:
parent
cf4d4f646b
commit
01ce37c805
@ -788,9 +788,9 @@ fn test_concat_expand() {
|
||||
r##"
|
||||
#[rustc_builtin_macro]
|
||||
macro_rules! concat {}
|
||||
concat!("foo", "r", 0, r#"bar"#, false);
|
||||
concat!("foo", "r", 0, r#"bar"#, "\n", false);
|
||||
"##,
|
||||
expect![[r#""foor0barfalse""#]],
|
||||
expect![[r#""foor0bar\nfalse""#]],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -196,8 +196,8 @@ fn to_token($this) -> tt::TokenTree {
|
||||
tt::Literal => self { self };
|
||||
tt::Ident => self { self };
|
||||
tt::Punct => self { self };
|
||||
&str => self { tt::Literal{text: format!("{:?}", self.escape_default().to_string()).into(), id: tt::TokenId::unspecified()}};
|
||||
String => self { tt::Literal{text: format!("{:?}", self.escape_default().to_string()).into(), id: tt::TokenId::unspecified()}}
|
||||
&str => self { tt::Literal{text: format!("\"{}\"", self.escape_debug()).into(), id: tt::TokenId::unspecified()}};
|
||||
String => self { tt::Literal{text: format!("\"{}\"", self.escape_debug()).into(), id: tt::TokenId::unspecified()}}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
Loading…
Reference in New Issue
Block a user