mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 14:03:35 +00:00
Add Span::{line, column}
This commit is contained in:
parent
306398b808
commit
be346a0ed6
1 changed files with 10 additions and 0 deletions
|
@ -329,6 +329,16 @@ impl server::Span for RustAnalyzer {
|
||||||
fn start(&mut self, _self_: Self::Span) -> Self::Span {
|
fn start(&mut self, _self_: Self::Span) -> Self::Span {
|
||||||
tt::TokenId::unspecified()
|
tt::TokenId::unspecified()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn line(&mut self, _span: Self::Span) -> usize {
|
||||||
|
// FIXME handle line
|
||||||
|
0
|
||||||
|
}
|
||||||
|
|
||||||
|
fn column(&mut self, _span: Self::Span) -> usize {
|
||||||
|
// FIXME handle column
|
||||||
|
0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl server::Symbol for RustAnalyzer {
|
impl server::Symbol for RustAnalyzer {
|
||||||
|
|
Loading…
Reference in a new issue