mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Handle raw identifiers in proc macro server
This commit is contained in:
parent
04a2ac2de2
commit
de591f08d6
@ -471,8 +471,12 @@ impl server::Punct for RustAnalyzer {
|
||||
}
|
||||
|
||||
impl server::Ident for RustAnalyzer {
|
||||
fn new(&mut self, string: &str, span: Self::Span, _is_raw: bool) -> Self::Ident {
|
||||
IdentId(self.ident_interner.intern(&IdentData(tt::Ident { text: string.into(), id: span })))
|
||||
fn new(&mut self, string: &str, span: Self::Span, is_raw: bool) -> Self::Ident {
|
||||
IdentId(self.ident_interner.intern(&IdentData(tt::Ident::new_with_is_raw(
|
||||
string.into(),
|
||||
span,
|
||||
is_raw,
|
||||
))))
|
||||
}
|
||||
|
||||
fn span(&mut self, ident: Self::Ident) -> Self::Span {
|
||||
|
@ -486,8 +486,12 @@ impl server::Punct for RustAnalyzer {
|
||||
}
|
||||
|
||||
impl server::Ident for RustAnalyzer {
|
||||
fn new(&mut self, string: &str, span: Self::Span, _is_raw: bool) -> Self::Ident {
|
||||
IdentId(self.ident_interner.intern(&IdentData(tt::Ident { text: string.into(), id: span })))
|
||||
fn new(&mut self, string: &str, span: Self::Span, is_raw: bool) -> Self::Ident {
|
||||
IdentId(self.ident_interner.intern(&IdentData(tt::Ident::new_with_is_raw(
|
||||
string.into(),
|
||||
span,
|
||||
is_raw,
|
||||
))))
|
||||
}
|
||||
|
||||
fn span(&mut self, ident: Self::Ident) -> Self::Span {
|
||||
|
@ -107,8 +107,8 @@ impl server::TokenStream for RustAnalyzer {
|
||||
}
|
||||
|
||||
bridge::TokenTree::Ident(ident) => {
|
||||
// FIXME: handle raw idents
|
||||
let text = ident.sym.text();
|
||||
let text = if ident.is_raw { tt::SmolStr::from_iter(["r#", &text]) } else { text };
|
||||
let ident: tt::Ident = tt::Ident { text, id: ident.span };
|
||||
let leaf = tt::Leaf::from(ident);
|
||||
let tree = TokenTree::from(leaf);
|
||||
@ -182,9 +182,8 @@ impl server::TokenStream for RustAnalyzer {
|
||||
.map(|tree| match tree {
|
||||
tt::TokenTree::Leaf(tt::Leaf::Ident(ident)) => {
|
||||
bridge::TokenTree::Ident(bridge::Ident {
|
||||
sym: Symbol::intern(&ident.text),
|
||||
// FIXME: handle raw idents
|
||||
is_raw: false,
|
||||
sym: Symbol::intern(&ident.text.trim_start_matches("r#")),
|
||||
is_raw: ident.text.starts_with("r#"),
|
||||
span: ident.id,
|
||||
})
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ fn test_fn_like_macro_clone_raw_ident() {
|
||||
"r#async",
|
||||
expect![[r#"
|
||||
SUBTREE $
|
||||
IDENT async 4294967295"#]],
|
||||
IDENT r#async 4294967295"#]],
|
||||
);
|
||||
}
|
||||
|
||||
@ -86,15 +86,13 @@ fn test_fn_like_mk_literals() {
|
||||
|
||||
#[test]
|
||||
fn test_fn_like_mk_idents() {
|
||||
// FIXME: this test is wrong: raw should be 'r#raw' but ABIs 1.64 and below
|
||||
// simply ignore `is_raw` when implementing the `Ident` interface.
|
||||
assert_expand(
|
||||
"fn_like_mk_idents",
|
||||
r#""#,
|
||||
expect![[r#"
|
||||
SUBTREE $
|
||||
IDENT standard 4294967295
|
||||
IDENT raw 4294967295"#]],
|
||||
IDENT r#raw 4294967295"#]],
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -86,10 +86,20 @@ pub enum Spacing {
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct Ident {
|
||||
/// Identifier or keyword. Unlike rustc, we keep "r#" prefix when it represents a raw identifier.
|
||||
pub text: SmolStr,
|
||||
pub id: TokenId,
|
||||
}
|
||||
|
||||
impl Ident {
|
||||
/// Constructor intended to be used only by proc macro server. `text` should not contain raw
|
||||
/// identifier prefix.
|
||||
pub fn new_with_is_raw(text: SmolStr, id: TokenId, is_raw: bool) -> Self {
|
||||
let text = if is_raw { SmolStr::from_iter(["r#", &text]) } else { text };
|
||||
Ident { text, id }
|
||||
}
|
||||
}
|
||||
|
||||
impl Leaf {
|
||||
pub fn id(&self) -> TokenId {
|
||||
match self {
|
||||
|
Loading…
Reference in New Issue
Block a user