We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Span::{line, column}
1 parent 306398b commit be346a0Copy full SHA for be346a0
crates/proc-macro-srv/src/server.rs
@@ -329,6 +329,16 @@ impl server::Span for RustAnalyzer {
329
fn start(&mut self, _self_: Self::Span) -> Self::Span {
330
tt::TokenId::unspecified()
331
}
332
+
333
+ fn line(&mut self, _span: Self::Span) -> usize {
334
+ // FIXME handle line
335
+ 0
336
+ }
337
338
+ fn column(&mut self, _span: Self::Span) -> usize {
339
+ // FIXME handle column
340
341
342
343
344
impl server::Symbol for RustAnalyzer {
0 commit comments