Fixed rust-analyser: no implementation for position()
This commit is contained in:
parent
3dbeb69503
commit
af24c376a2
@ -20,7 +20,7 @@
|
||||
mod symbol;
|
||||
pub use symbol::*;
|
||||
|
||||
use std::ops::Bound;
|
||||
use std::ops::{Bound, Range};
|
||||
|
||||
use crate::tt;
|
||||
|
||||
@ -298,6 +298,10 @@ fn source(&mut self, span: Self::Span) -> Self::Span {
|
||||
// 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…
Reference in New Issue
Block a user