mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 11:20:54 +00:00
Merge pull request #19033 from ChayimFriedman2/span-1
fix: Make proc_macro span's line & column 1-indexed, as documented
This commit is contained in:
commit
be9710ea6f
@ -392,12 +392,12 @@ impl server::Span for RaSpanServer {
|
|||||||
|
|
||||||
fn line(&mut self, _span: Self::Span) -> usize {
|
fn line(&mut self, _span: Self::Span) -> usize {
|
||||||
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
|
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
|
||||||
0
|
1
|
||||||
}
|
}
|
||||||
|
|
||||||
fn column(&mut self, _span: Self::Span) -> usize {
|
fn column(&mut self, _span: Self::Span) -> usize {
|
||||||
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
|
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
|
||||||
0
|
1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -291,11 +291,11 @@ impl server::Span for TokenIdServer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn line(&mut self, _span: Self::Span) -> usize {
|
fn line(&mut self, _span: Self::Span) -> usize {
|
||||||
0
|
1
|
||||||
}
|
}
|
||||||
|
|
||||||
fn column(&mut self, _span: Self::Span) -> usize {
|
fn column(&mut self, _span: Self::Span) -> usize {
|
||||||
0
|
1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user