Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | crates/proc_macro_srv/src/abis/abi_1_56/rustc_server.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/proc_macro_srv/src/abis/abi_1_56/rustc_server.rs b/crates/proc_macro_srv/src/abis/abi_1_56/rustc_server.rs index b0c2681f71..082cdd0a95 100644 --- a/crates/proc_macro_srv/src/abis/abi_1_56/rustc_server.rs +++ b/crates/proc_macro_srv/src/abis/abi_1_56/rustc_server.rs @@ -653,10 +653,12 @@ impl server::Span for Rustc { unimplemented!() } fn save_span(&mut self, _span: Self::Span) -> usize { - unimplemented!() + // FIXME stub + 0 } 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 /// |