mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 11:59:49 +00:00
Fixed rust-analyser: no implementation for position()
This commit is contained in:
parent
15b867b5db
commit
e66d0208bc
1 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,7 @@ use token_stream::TokenStreamBuilder;
|
|||
mod symbol;
|
||||
pub use symbol::*;
|
||||
|
||||
use std::ops::Bound;
|
||||
use std::ops::{Bound, Range};
|
||||
|
||||
use crate::tt;
|
||||
|
||||
|
@ -298,6 +298,10 @@ impl server::Span for RustAnalyzer {
|
|||
// FIXME handle span
|
||||
span
|
||||
}
|
||||
fn position(&mut self, _span: Self::Span) -> Range<u32> {
|
||||
// FIXME handle span
|
||||
Range { start: 0, end: 0 }
|
||||
}
|
||||
fn start(&mut self, _span: Self::Span) -> LineColumn {
|
||||
// FIXME handle span
|
||||
LineColumn { line: 0, column: 0 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue