We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1973c3 commit 53ef95bCopy full SHA for 53ef95b
1 file changed
src/definition/resolve.rs
@@ -727,9 +727,7 @@ impl Backend {
727
/// `SymbolMap` lookup. This helper is retained for non-cursor-context
728
/// uses (e.g. go-to-implementation) and as a fallback when no symbol
729
/// map exists for the file.
730
- #[deprecated(
731
- note = "prefer SymbolMap lookup; kept as fallback and for non-cursor uses"
732
- )]
+ #[deprecated(note = "prefer SymbolMap lookup; kept as fallback and for non-cursor uses")]
733
pub fn extract_word_at_position(content: &str, position: Position) -> Option<String> {
734
let lines: Vec<&str> = content.lines().collect();
735
let line_idx = position.line as usize;
0 commit comments