pub type Span = SimpleSpan<usize, SourceId>;
Expand description
Identifies a span of text within its source file.
Aliased Type§
pub struct Span {
pub start: usize,
pub end: usize,
/* private fields */
}
Fields§
§start: usize
The start offset of the span.
end: usize
The end (exclusive) offset of the span.