Fix inlay hints not resolving correct position

This commit is contained in:
ef3d0c3e 2024-11-19 09:51:24 +01:00
parent 637f46a961
commit cf6ec12afb
3 changed files with 9 additions and 2 deletions

View file

@ -271,7 +271,7 @@ impl RegexRule for ScriptRule {
let range = matches
.get(0)
.map(|m| {
if token.source().content().as_bytes()[m.start()] == b'\n' {
if index == 0 && token.source().content().as_bytes()[m.start()] == b'\n' {
m.start() + 1..m.end()
} else {
m.range()
@ -295,6 +295,7 @@ impl RegexRule for ScriptRule {
}
sems.add(matches.get(3).unwrap().range(), tokens.script_content);
}
eprintln!("range={:#?}", range);
sems.add(range.end - 2..range.end, tokens.script_sep);
}
@ -306,7 +307,7 @@ impl RegexRule for ScriptRule {
});
if !label.is_empty() {
label.pop();
hints.add(matches.get(0).unwrap().end(), label);
hints.add(matches.get(0).unwrap().end() - 1, label);
}
}

View file

@ -7,6 +7,7 @@ use tower_lsp::lsp_types::InlayHint;
use crate::parser::source::LineCursor;
use crate::parser::source::Source;
use crate::parser::source::SourceFile;
use crate::parser::source::SourcePosition;
use crate::parser::source::VirtualSource;
use super::data::LSPData;
@ -82,6 +83,7 @@ impl<'a> Hints<'a> {
}
pub fn add(&self, position: usize, label: String) {
let position = self.original_source.original_position(position).1;
let mut cursor = self.hints.cursor.borrow_mut();
cursor.move_to(position);

View file

@ -435,6 +435,10 @@ impl<'a> Semantics<'a> {
/// Add a semantic token to be processed instantly
pub fn add(&self, range: Range<usize>, token: (u32, u32)) {
let range = self.original_source.original_range(range).1;
eprintln!(
"Added {token:#?} range={range:#?} source={:#?}",
self.original_source
);
self.process_queue(range.start);
self.add_impl(range, token);
}