pub type LspRange = Range;
Expand description
A resolved file range.
See LspPosition
for the definition of the position inside a file.
Aliased Type§
struct LspRange {
pub start: Position,
pub end: Position,
}
Fields§
§start: Position
The range’s start position.
end: Position
The range’s end position.