We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LineColumn
Span::start
Span::end
1 parent 9326cf7 commit e130d7aCopy full SHA for e130d7a
crates/proc-macro-srv/src/server.rs
@@ -304,14 +304,6 @@ impl server::Span for RustAnalyzer {
304
// FIXME handle span
305
Range { start: 0, end: 0 }
306
}
307
- fn start(&mut self, _span: Self::Span) -> LineColumn {
308
- // FIXME handle span
309
- LineColumn { line: 0, column: 0 }
310
- }
311
- fn end(&mut self, _span: Self::Span) -> LineColumn {
312
313
314
315
fn join(&mut self, first: Self::Span, _second: Self::Span) -> Option<Self::Span> {
316
// Just return the first span again, because some macros will unwrap the result.
317
Some(first)
0 commit comments