Skip to content

Commit e130d7a

Browse files
committed
Remove LineColumn, Span::start, Span::end
1 parent 9326cf7 commit e130d7a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

crates/proc-macro-srv/src/server.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -304,14 +304,6 @@ impl server::Span for RustAnalyzer {
304304
// FIXME handle span
305305
Range { start: 0, end: 0 }
306306
}
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-
// FIXME handle span
313-
LineColumn { line: 0, column: 0 }
314-
}
315307
fn join(&mut self, first: Self::Span, _second: Self::Span) -> Option<Self::Span> {
316308
// Just return the first span again, because some macros will unwrap the result.
317309
Some(first)

0 commit comments

Comments
 (0)