File tree 2 files changed +4
-4
lines changed
src/tools/rust-analyzer/crates/proc-macro-srv/src/server_impl
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -392,12 +392,12 @@ impl server::Span for RaSpanServer {
392
392
393
393
fn line ( & mut self , _span : Self :: Span ) -> usize {
394
394
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
395
- 0
395
+ 1
396
396
}
397
397
398
398
fn column ( & mut self , _span : Self :: Span ) -> usize {
399
399
// FIXME requires db to resolve line index, THIS IS NOT INCREMENTAL
400
- 0
400
+ 1
401
401
}
402
402
}
403
403
Original file line number Diff line number Diff line change @@ -291,11 +291,11 @@ impl server::Span for TokenIdServer {
291
291
}
292
292
293
293
fn line ( & mut self , _span : Self :: Span ) -> usize {
294
- 0
294
+ 1
295
295
}
296
296
297
297
fn column ( & mut self , _span : Self :: Span ) -> usize {
298
- 0
298
+ 1
299
299
}
300
300
}
301
301
You can’t perform that action at this time.
0 commit comments