mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
Implement save_span
/ recover_proc_macro_span
This commit is contained in:
parent
5d4bb05fff
commit
9641bc7369
1 changed files with 4 additions and 2 deletions
|
@ -653,10 +653,12 @@ impl server::Span for Rustc {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn save_span(&mut self, _span: Self::Span) -> usize {
|
fn save_span(&mut self, _span: Self::Span) -> usize {
|
||||||
unimplemented!()
|
// FIXME stub
|
||||||
|
0
|
||||||
}
|
}
|
||||||
fn recover_proc_macro_span(&mut self, _id: usize) -> Self::Span {
|
fn recover_proc_macro_span(&mut self, _id: usize) -> Self::Span {
|
||||||
unimplemented!()
|
// FIXME stub
|
||||||
|
tt::TokenId::unspecified()
|
||||||
}
|
}
|
||||||
/// Recent feature, not yet in the proc_macro
|
/// Recent feature, not yet in the proc_macro
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue