Skip to content

Commit 9559894

Browse files
committed
Add debug info to invalid offset error
1 parent 4c007c8 commit 9559894

File tree

1 file changed

+3
-2
lines changed
  • src/tools/rust-analyzer/crates/rust-analyzer/src/lsp

1 file changed

+3
-2
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/lsp/from_proto.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ pub(crate) fn offset(
3737
.ok_or_else(|| format_err!("Invalid wide col offset"))?
3838
}
3939
};
40-
let text_size =
41-
line_index.index.offset(line_col).ok_or_else(|| format_err!("Invalid offset"))?;
40+
let text_size = line_index.index.offset(line_col).ok_or_else(|| {
41+
format_err!("Invalid offset {line_col:?} (line index length: {:?})", line_index.index.len())
42+
})?;
4243
Ok(text_size)
4344
}
4445

0 commit comments

Comments
 (0)