pub type Span = Range<usize>;Expand description
Span for tokens or AST nodes, a range of byte offsets from the start of the source
Aliased Type§
pub struct Span {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).